// wdm.h
VOID KeClearEvent(
[in, out] PRKEVENT Event
);
View the official Windows Driver Kit DDI reference
No description available.
The KeClearEvent routine sets an event to a not-signaled state.
Event
[in, out]Pointer to an initialized dispatcher object of type event for which the caller supplies the storage.
Event is set to a not-signaled state, meaning its value is set to zero.
For better performance, use KeClearEvent unless the caller uses the value returned by KeResetEvent to determine what to do next.
For more information about event objects, see Event Objects.