NdisSetEvent (Compact 2013)
3/26/2014
This function sets a given event to the Signaled state if it was not already signaled.
Syntax
VOID NdisSetEvent(
PNDIS_EVENT Event
);
Parameters
- Event
[in] Points to an initialized event object for which the caller provides the storage.
Return Value
None.
Remarks
When an event attains the Signaled state, it causes waits on the event to be satisfied and any waiters to be dispatched for execution.
After a call to NdisSetEvent, the event remains in the Signaled state until the driver calls NdisResetEvent.
Requirements
Header |
ndis.h |
See Also
Reference
NDIS Event Interface
NdisInitializeEvent
NdisResetEvent
NdisWaitEvent