// ndis.h
VOID NdisResetEvent(
[in] PNDIS_EVENT Event
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisResetEvent function clears the Signaled state of a given event.
Event [in]A pointer to an initialized event object for which the caller provided the storage.
NdisResetEvent explicitly sets the state of the given event to not-signaled.
When an event is set to the signaled state with the NdisSetEvent function, it remains in that state until an explicit call to NdisResetEvent occurs. While an event remains in the signaled state, callers of the NdisWaitEvent function on that event are dispatched for execution without waiting.