Commit 37e22ebb authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

ntoskrnl.exe: Add stub for IoUnregisterPlugPlayNotification.

parent c8fcedcf
...@@ -2764,6 +2764,15 @@ NTSTATUS WINAPI IoRegisterPlugPlayNotification(IO_NOTIFICATION_EVENT_CATEGORY ca ...@@ -2764,6 +2764,15 @@ NTSTATUS WINAPI IoRegisterPlugPlayNotification(IO_NOTIFICATION_EVENT_CATEGORY ca
} }
/***************************************************** /*****************************************************
* IoUnregisterPlugPlayNotification (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI IoUnregisterPlugPlayNotification(PVOID notification)
{
FIXME("stub: %p\n", notification);
return STATUS_SUCCESS;
}
/*****************************************************
* IoCsqInitialize (NTOSKRNL.EXE.@) * IoCsqInitialize (NTOSKRNL.EXE.@)
*/ */
NTSTATUS WINAPI IoCsqInitialize(PIO_CSQ csq, PIO_CSQ_INSERT_IRP insert_irp, PIO_CSQ_REMOVE_IRP remove_irp, NTSTATUS WINAPI IoCsqInitialize(PIO_CSQ csq, PIO_CSQ_INSERT_IRP insert_irp, PIO_CSQ_REMOVE_IRP remove_irp,
......
...@@ -472,7 +472,7 @@ ...@@ -472,7 +472,7 @@
@ stub IoThreadToProcess @ stub IoThreadToProcess
@ stdcall IoUnregisterFileSystem(ptr) @ stdcall IoUnregisterFileSystem(ptr)
@ stub IoUnregisterFsRegistrationChange @ stub IoUnregisterFsRegistrationChange
@ stub IoUnregisterPlugPlayNotification @ stdcall IoUnregisterPlugPlayNotification(ptr)
@ stdcall IoUnregisterShutdownNotification(ptr) @ stdcall IoUnregisterShutdownNotification(ptr)
@ stub IoUpdateShareAccess @ stub IoUpdateShareAccess
@ stub IoValidateDeviceIoControlAccess @ stub IoValidateDeviceIoControlAccess
......
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