Commit 23c95cab authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add stub KeClearEvent.

parent a8222a04
...@@ -3171,3 +3171,11 @@ NTSTATUS WINAPI IoCreateFile(HANDLE *handle, ACCESS_MASK access, OBJECT_ATTRIBUT ...@@ -3171,3 +3171,11 @@ NTSTATUS WINAPI IoCreateFile(HANDLE *handle, ACCESS_MASK access, OBJECT_ATTRIBUT
FIXME(": stub\n"); FIXME(": stub\n");
return STATUS_NOT_IMPLEMENTED; return STATUS_NOT_IMPLEMENTED;
} }
/***********************************************************************
* KeClearEvent (NTOSKRNL.EXE.@)
*/
VOID WINAPI KeClearEvent(PRKEVENT event)
{
FIXME("stub: %p\n", event);
}
...@@ -515,7 +515,7 @@ ...@@ -515,7 +515,7 @@
@ stub KeBugCheckEx @ stub KeBugCheckEx
@ stub KeCancelTimer @ stub KeCancelTimer
@ stub KeCapturePersistentThreadState @ stub KeCapturePersistentThreadState
@ stub KeClearEvent @ stdcall KeClearEvent(ptr)
@ stub KeConnectInterrupt @ stub KeConnectInterrupt
@ stub KeDcacheFlushCount @ stub KeDcacheFlushCount
@ stdcall KeDelayExecutionThread(long long ptr) @ stdcall KeDelayExecutionThread(long long ptr)
......
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