mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 15:11:41 +00:00
Fixed function prototypes
svn path=/trunk/; revision=654
This commit is contained in:
parent
70140f5ea7
commit
fe56845ebe
2 changed files with 7 additions and 9 deletions
|
@ -809,19 +809,17 @@ RtlDenormalizeProcessParams (
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS STDCALL
|
||||||
WINAPI
|
|
||||||
RtlInitializeContext(
|
RtlInitializeContext(
|
||||||
IN HANDLE ProcessHandle,
|
IN HANDLE ProcessHandle,
|
||||||
IN PCONTEXT Context,
|
IN PCONTEXT Context,
|
||||||
IN HANDLE DebugPort,
|
IN PVOID Parameter,
|
||||||
IN PVOID StartAddress,
|
IN PTHREAD_START_ROUTINE StartAddress,
|
||||||
IN OUT PINITIAL_TEB InitialTeb
|
IN OUT PINITIAL_TEB InitialTeb
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS STDCALL
|
||||||
WINAPI
|
|
||||||
RtlCreateUserThread(
|
RtlCreateUserThread(
|
||||||
IN HANDLE ProcessHandle,
|
IN HANDLE ProcessHandle,
|
||||||
IN PSECURITY_DESCRIPTOR SecurityDescriptor,
|
IN PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||||
|
@ -829,8 +827,8 @@ RtlCreateUserThread(
|
||||||
IN LONG StackZeroBits,
|
IN LONG StackZeroBits,
|
||||||
IN OUT PULONG StackReserved,
|
IN OUT PULONG StackReserved,
|
||||||
IN OUT PULONG StackCommit,
|
IN OUT PULONG StackCommit,
|
||||||
IN PVOID StartAddress,
|
IN PTHREAD_START_ROUTINE StartAddress,
|
||||||
IN HANDLE DebugPort,
|
IN PVOID Parameter,
|
||||||
IN OUT PHANDLE ThreadHandle,
|
IN OUT PHANDLE ThreadHandle,
|
||||||
IN OUT PCLIENT_ID ClientId
|
IN OUT PCLIENT_ID ClientId
|
||||||
);
|
);
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
RtlCreateUserThread(HANDLE ProcessHandle,
|
RtlCreateUserThread(HANDLE ProcessHandle,
|
||||||
SECURITY_DESCRIPTOR *SecurityDescriptor,
|
PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||||
BOOLEAN CreateSuspended,
|
BOOLEAN CreateSuspended,
|
||||||
LONG StackZeroBits,
|
LONG StackZeroBits,
|
||||||
PULONG StackReserved,
|
PULONG StackReserved,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue