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

ntoskrnl.exe: Add IoCreateNotificationEvent stub.

parent 54dc788b
......@@ -3255,7 +3255,16 @@ KIRQL WINAPI KeAcquireSpinLockRaiseToDpc(KSPIN_LOCK *spinlock)
/***********************************************************************
* KeReleaseSpinLock (NTOSKRNL.EXE.@)
*/
VOID WINAPI KeReleaseSpinLock( KSPIN_LOCK *spinlock, KIRQL irql )
void WINAPI KeReleaseSpinLock( KSPIN_LOCK *spinlock, KIRQL irql )
{
FIXME( "stub: %p %u\n", spinlock, irql );
}
/***********************************************************************
* IoCreateNotificationEvent (NTOSKRNL.EXE.@)
*/
PKEVENT WINAPI IoCreateNotificationEvent(UNICODE_STRING *name, HANDLE *handle)
{
FIXME( "stub: %s %p\n", debugstr_us(name), handle );
return NULL;
}
......@@ -343,7 +343,7 @@
@ stdcall IoCreateDriver(ptr ptr)
@ stdcall IoCreateFile(ptr long ptr ptr ptr long long long long ptr long long ptr long)
@ stub IoCreateFileSpecifyDeviceObjectHint
@ stub IoCreateNotificationEvent
@ stdcall IoCreateNotificationEvent(ptr ptr)
@ stub IoCreateStreamFileObject
@ stub IoCreateStreamFileObjectEx
@ stub IoCreateStreamFileObjectLite
......
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