ntoskrnl.exe: Add stub KeClearEvent.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2017-01-18 17:31:34 -06:00 committed by Alexandre Julliard
parent a8222a0437
commit 23c95cabf3
2 changed files with 9 additions and 1 deletions

View File

@ -3171,3 +3171,11 @@ NTSTATUS WINAPI IoCreateFile(HANDLE *handle, ACCESS_MASK access, OBJECT_ATTRIBUT
FIXME(": stub\n");
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* KeClearEvent (NTOSKRNL.EXE.@)
*/
VOID WINAPI KeClearEvent(PRKEVENT event)
{
FIXME("stub: %p\n", event);
}

View File

@ -515,7 +515,7 @@
@ stub KeBugCheckEx
@ stub KeCancelTimer
@ stub KeCapturePersistentThreadState
@ stub KeClearEvent
@ stdcall KeClearEvent(ptr)
@ stub KeConnectInterrupt
@ stub KeDcacheFlushCount
@ stdcall KeDelayExecutionThread(long long ptr)