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.@)
|
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -922,6 +922,7 @@
|
||||||
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
||||||
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr)
|
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr)
|
||||||
@ stub PsRestoreImpersonation
|
@ stub PsRestoreImpersonation
|
||||||
|
@ stdcall PsResumeProcess(ptr)
|
||||||
@ stub PsReturnPoolQuota
|
@ stub PsReturnPoolQuota
|
||||||
@ stub PsReturnProcessNonPagedPoolQuota
|
@ stub PsReturnProcessNonPagedPoolQuota
|
||||||
@ stub PsReturnProcessPagedPoolQuota
|
@ stub PsReturnProcessPagedPoolQuota
|
||||||
|
@ -941,6 +942,7 @@
|
||||||
@ stub PsSetProcessWindowStation
|
@ stub PsSetProcessWindowStation
|
||||||
@ stub PsSetThreadHardErrorsAreDisabled
|
@ stub PsSetThreadHardErrorsAreDisabled
|
||||||
@ stub PsSetThreadWin32Thread
|
@ stub PsSetThreadWin32Thread
|
||||||
|
@ stdcall PsSuspendProcess(ptr)
|
||||||
@ stdcall PsTerminateSystemThread(long)
|
@ stdcall PsTerminateSystemThread(long)
|
||||||
@ extern PsThreadType
|
@ extern PsThreadType
|
||||||
@ stdcall READ_REGISTER_BUFFER_UCHAR(ptr ptr long)
|
@ stdcall READ_REGISTER_BUFFER_UCHAR(ptr ptr long)
|
||||||
|
|
Loading…
Reference in New Issue