// ndis.h
VOID NdisSetEvent(
[in] PNDIS_EVENT Event
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisSetEvent function sets a given event to the signaled state if it was not already Signaled.
Event [in]A pointer to an initialized event object for which the caller provides the storage.
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 the NdisResetEvent function.