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

ntoskrnl.exe: Add a stub for IoCreateSynchronizationEvent.

parent 2bc08d7f
......@@ -1751,3 +1751,12 @@ BOOLEAN WINAPI Ke386SetIoAccessMap(ULONG flag, PVOID buffer)
FIXME("(%d %p) stub\n", flag, buffer);
return FALSE;
}
/*****************************************************
* IoCreateSynchronizationEvent (NTOSKRNL.EXE.@)
*/
PKEVENT WINAPI IoCreateSynchronizationEvent(PUNICODE_STRING name, PHANDLE handle)
{
FIXME("(%p %p) stub\n", name, handle);
return NULL;
}
......@@ -346,7 +346,7 @@
@ stub IoCreateStreamFileObjectEx
@ stub IoCreateStreamFileObjectLite
@ stdcall IoCreateSymbolicLink(ptr ptr)
@ stub IoCreateSynchronizationEvent
@ stdcall IoCreateSynchronizationEvent(ptr ptr)
@ stub IoCreateUnprotectedSymbolicLink
@ stub IoCsqInitialize
@ stub IoCsqInsertIrp
......
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