ntoskrnl.exe: Add stub for IoUnregisterPlugPlayNotification.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c8fcedcf26
commit
37e22ebb33
|
@ -2763,6 +2763,15 @@ NTSTATUS WINAPI IoRegisterPlugPlayNotification(IO_NOTIFICATION_EVENT_CATEGORY ca
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
* IoUnregisterPlugPlayNotification (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI IoUnregisterPlugPlayNotification(PVOID notification)
|
||||
{
|
||||
FIXME("stub: %p\n", notification);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
* IoCsqInitialize (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -472,7 +472,7 @@
|
|||
@ stub IoThreadToProcess
|
||||
@ stdcall IoUnregisterFileSystem(ptr)
|
||||
@ stub IoUnregisterFsRegistrationChange
|
||||
@ stub IoUnregisterPlugPlayNotification
|
||||
@ stdcall IoUnregisterPlugPlayNotification(ptr)
|
||||
@ stdcall IoUnregisterShutdownNotification(ptr)
|
||||
@ stub IoUpdateShareAccess
|
||||
@ stub IoValidateDeviceIoControlAccess
|
||||
|
|
Loading…
Reference in New Issue