Commit bd6f749c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll: Add NtSuspendProcess stub.

parent 71bb4a13
......@@ -361,7 +361,7 @@
@ stdcall NtSignalAndWaitForSingleObject(long long long ptr)
@ stub NtStartProfile
@ stub NtStopProfile
# @ stub NtSuspendProcess
@ stdcall NtSuspendProcess(long)
@ stdcall NtSuspendThread(long ptr)
@ stdcall NtSystemDebugControl(long ptr long ptr long ptr)
@ stdcall NtTerminateJobObject(long long)
......@@ -1286,7 +1286,7 @@
@ stdcall ZwSignalAndWaitForSingleObject(long long long ptr) NtSignalAndWaitForSingleObject
@ stub ZwStartProfile
@ stub ZwStopProfile
# @ stub ZwSuspendProcess
@ stdcall ZwSuspendProcess(long) NtSuspendProcess
@ stdcall ZwSuspendThread(long ptr) NtSuspendThread
@ stdcall ZwSystemDebugControl(long ptr long ptr long ptr) NtSystemDebugControl
@ stdcall ZwTerminateJobObject(long long) NtTerminateJobObject
......
......@@ -642,3 +642,13 @@ NTSTATUS WINAPI NtOpenProcess(PHANDLE handle, ACCESS_MASK access,
SERVER_END_REQ;
return status;
}
/******************************************************************************
* NtSuspendProcess
* ZwSuspendProcess
*/
NTSTATUS WINAPI NtSuspendProcess( HANDLE handle )
{
FIXME("stub: %p\n", handle);
return STATUS_NOT_IMPLEMENTED;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment