ntoskrnl.exe: Add stub for IoUnregisterShutdownNotification.
This commit is contained in:
parent
13a7e6995a
commit
b54f3e711f
|
@ -837,6 +837,15 @@ NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoUnregisterShutdownNotification (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
VOID WINAPI IoUnregisterShutdownNotification( PDEVICE_OBJECT obj )
|
||||
{
|
||||
FIXME( "stub: %p\n", obj );
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoReportResourceUsage (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -470,7 +470,7 @@
|
|||
@ stdcall IoUnregisterFileSystem(ptr)
|
||||
@ stub IoUnregisterFsRegistrationChange
|
||||
@ stub IoUnregisterPlugPlayNotification
|
||||
@ stub IoUnregisterShutdownNotification
|
||||
@ stdcall IoUnregisterShutdownNotification(ptr)
|
||||
@ stub IoUpdateShareAccess
|
||||
@ stub IoValidateDeviceIoControlAccess
|
||||
@ stub IoVerifyPartitionTable
|
||||
|
|
Loading…
Reference in New Issue