More NDK fixes (user-mode NDK now works) and guard some stuff in include/ntdll so...
[reactos.git] / reactos / include / ndk / psfuncs.h
1 /*
2 * PROJECT: ReactOS Native Headers
3 * FILE: include/ndk/psfuncs.h
4 * PURPOSE: Defintions for Process Manager Functions not documented in DDK/IFS.
5 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
6 * UPDATE HISTORY:
7 * Created 06/10/04
8 */
9 #ifndef _PSFUNCS_H
10 #define _PSFUNCS_H
11
12 /* DEPENDENCIES **************************************************************/
13
14 /* PROTOTYPES ****************************************************************/
15
16 VOID
17 STDCALL
18 PsRevertThreadToSelf(
19 IN struct _ETHREAD* Thread
20 );
21
22 struct _W32THREAD*
23 STDCALL
24 PsGetWin32Thread(
25 VOID
26 );
27
28 struct _W32PROCESS*
29 STDCALL
30 PsGetWin32Process(
31 VOID
32 );
33
34 #endif