NdisSetEvent (Windows Embedded CE 6.0)

1/6/2010

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

NDIS Library Functions
NdisInitializeEvent
NdisResetEvent
NdisWaitEvent