mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Add prototypes for RtlExitUserThread and RtlInitializeContext.
svn path=/trunk/; revision=16376
This commit is contained in:
parent
16c7672bfd
commit
f15bf7924f
1 changed files with 14 additions and 0 deletions
|
@ -1075,6 +1075,20 @@ NTSTATUS
|
|||
STDCALL
|
||||
RtlDestroyProcessParameters(IN PRTL_USER_PROCESS_PARAMETERS ProcessParameters);
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
RtlExitUserThread(NTSTATUS Status);
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
RtlInitializeContext(
|
||||
IN HANDLE ProcessHandle,
|
||||
OUT PCONTEXT ThreadContext,
|
||||
IN PVOID ThreadStartParam OPTIONAL,
|
||||
IN PTHREAD_START_ROUTINE ThreadStartAddress,
|
||||
IN PINITIAL_TEB InitialTeb
|
||||
);
|
||||
|
||||
PRTL_USER_PROCESS_PARAMETERS
|
||||
STDCALL
|
||||
RtlNormalizeProcessParams(IN PRTL_USER_PROCESS_PARAMETERS ProcessParameters);
|
||||
|
|
Loading…
Reference in a new issue