NdisSetEvent - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisSetEvent(
  [in] PNDIS_EVENT Event
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndissetevent)

NdisSetEvent function

Description

The NdisSetEvent function sets a given event to the signaled state if it was not already Signaled.

Parameters

Event [in]

A pointer to an initialized event object for which the caller provides the storage.

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 the NdisResetEvent function.

See also

NdisInitializeEvent

NdisResetEvent

NdisWaitEvent