ntoskrnl.exe: Add PsRemoveLoadImageNotifyRoutine stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
89eb67dbc8
commit
b1c02353df
|
@ -2147,6 +2147,16 @@ NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PsRemoveLoadImageNotifyRoutine (NTOSKRNL.EXE.@)
|
||||||
|
*/
|
||||||
|
NTSTATUS WINAPI PsRemoveLoadImageNotifyRoutine(PLOAD_IMAGE_NOTIFY_ROUTINE NotifyRoutine)
|
||||||
|
{
|
||||||
|
FIXME( "stub: %p\n", NotifyRoutine );
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
|
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -899,7 +899,7 @@
|
||||||
@ stub PsReferenceImpersonationToken
|
@ stub PsReferenceImpersonationToken
|
||||||
@ stub PsReferencePrimaryToken
|
@ stub PsReferencePrimaryToken
|
||||||
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
|
||||||
@ stub PsRemoveLoadImageNotifyRoutine
|
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr)
|
||||||
@ stub PsRestoreImpersonation
|
@ stub PsRestoreImpersonation
|
||||||
@ stub PsReturnPoolQuota
|
@ stub PsReturnPoolQuota
|
||||||
@ stub PsReturnProcessNonPagedPoolQuota
|
@ stub PsReturnProcessNonPagedPoolQuota
|
||||||
|
|
Loading…
Reference in New Issue