VOID
NdisSetEvent(
IN PNDIS_EVENT Event
);
NdisSetEvent sets a given event to the Signaled state if it was not already Signaled.
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.
Callers of NdisSetEvent run at IRQL <= DISPATCH_LEVEL.