ntoskrnl.exe: Add PsRemoveCreateThreadNotifyRoutine stub.
Signed-off-by: Qian Hong <qhong@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
aaa7f2ca5a
commit
f9c80b087f
|
@ -2066,6 +2066,16 @@ NTSTATUS WINAPI PsSetCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE No
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* PsRemoveCreateThreadNotifyRoutine (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE NotifyRoutine )
|
||||
{
|
||||
FIXME( "stub: %p\n", NotifyRoutine );
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -898,7 +898,7 @@
|
|||
@ stub PsProcessType
|
||||
@ stub PsReferenceImpersonationToken
|
||||
@ stub PsReferencePrimaryToken
|
||||
@ stub PsRemoveCreateThreadNotifyRoutine
|
||||
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
||||
@ stub PsRemoveLoadImageNotifyRoutine
|
||||
@ stub PsRestoreImpersonation
|
||||
@ stub PsReturnPoolQuota
|
||||
|
|
Loading…
Reference in New Issue