ntoskrnl.exe: Add stubs for PsSuspendProcess() and PsResumeProcess().
Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7a6b00dc25
commit
d88f129507
|
@ -2965,6 +2965,26 @@ NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS status)
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* PsSuspendProcess (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI PsSuspendProcess(PEPROCESS process)
|
||||
{
|
||||
FIXME("stub: %p\n", process);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* PsResumeProcess (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI PsResumeProcess(PEPROCESS process)
|
||||
{
|
||||
FIXME("stub: %p\n", process);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -922,6 +922,7 @@
|
|||
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
||||
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr)
|
||||
@ stub PsRestoreImpersonation
|
||||
@ stdcall PsResumeProcess(ptr)
|
||||
@ stub PsReturnPoolQuota
|
||||
@ stub PsReturnProcessNonPagedPoolQuota
|
||||
@ stub PsReturnProcessPagedPoolQuota
|
||||
|
@ -941,6 +942,7 @@
|
|||
@ stub PsSetProcessWindowStation
|
||||
@ stub PsSetThreadHardErrorsAreDisabled
|
||||
@ stub PsSetThreadWin32Thread
|
||||
@ stdcall PsSuspendProcess(ptr)
|
||||
@ stdcall PsTerminateSystemThread(long)
|
||||
@ extern PsThreadType
|
||||
@ stdcall READ_REGISTER_BUFFER_UCHAR(ptr ptr long)
|
||||
|
|
Loading…
Reference in New Issue