NdisResetEvent (Compact 2013)
3/26/2014
This function clears the signaled state of a given event.
Syntax
VOID NdisResetEvent(
PNDIS_EVENT Event
);
Parameters
- Event
[in] Points to an initialized event object for which the caller provided the storage.
Return Value
None.
Remarks
NdisResetEvent explicitly sets the state of the given event to NOT SIGNALED.
When an event is set to the Signaled state with NdisSetEvent, it remains in that state until an explicit call to NdisResetEvent occurs. While an event remains in the Signaled state, callers of NdisWaitEvent on that Event are dispatched for execution without waiting.
Requirements
Header |
ndis.h |
See Also
Reference
NDIS Event Interface
NdisInitializeEvent
NdisSetEvent
NdisWaitEvent