Share via


NdisSetEvent

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

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
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NdisInitializeEvent
NdisResetEvent
NdisWaitEvent