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

ntoskrnl.exe: Add PsRemoveLoadImageNotifyRoutine stub.

parent 89eb67db
...@@ -2148,6 +2148,16 @@ NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE ...@@ -2148,6 +2148,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.@)
*/ */
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS ExitStatus) NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS ExitStatus)
......
...@@ -899,7 +899,7 @@ ...@@ -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
......
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