Commit 4f39948f authored by Jim Cameron's avatar Jim Cameron Committed by Alexandre Julliard

ntoskrnl.exe: Add stub for IoRegisterShutdownNotification().

parent 9a4d1d15
......@@ -480,6 +480,16 @@ void WINAPI IoRegisterDriverReinitialization( PDRIVER_OBJECT obj, PDRIVER_REINIT
/***********************************************************************
* IoRegisterShutdownNotification (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj )
{
FIXME( "stub: %p\n", obj );
return STATUS_SUCCESS;
}
/***********************************************************************
* IofCompleteRequest (NTOSKRNL.EXE.@)
*/
#ifdef DEFINE_FASTCALL2_ENTRYPOINT
......
......@@ -431,7 +431,7 @@
@ stub IoRegisterFsRegistrationChange
@ stub IoRegisterLastChanceShutdownNotification
@ stub IoRegisterPlugPlayNotification
@ stub IoRegisterShutdownNotification
@ stdcall IoRegisterShutdownNotification(ptr)
@ stub IoReleaseCancelSpinLock
@ stub IoReleaseRemoveLockAndWaitEx
@ stub IoReleaseRemoveLockEx
......
......@@ -49,5 +49,6 @@ typedef enum _BUS_DATA_TYPE
typedef VOID (WINAPI *PDRIVER_REINITIALIZE)(PDRIVER_OBJECT,PVOID,ULONG);
void WINAPI IoRegisterDriverReinitialization(PDRIVER_OBJECT,PDRIVER_REINITIALIZE,PVOID);
NTSTATUS WINAPI IoRegisterShutdownNotification(PDEVICE_OBJECT);
#endif
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