Share via


NdisResetEvent (Windows Embedded CE 6.0)

1/6/2010

This function clears the signaled state of a given event.

Syntax

VOID NdisResetEvent(
  PNDIS_EVENT Event
);

Parameters

  • Event
    [in] Points to an initialized event object for which the caller provided the storage.

Return Value

None.

Remarks

NdisResetEvent explicitly sets the state of the given event to NOT SIGNALED.

When an event is set to the Signaled state with NdisSetEvent, it remains in that state until an explicit call to NdisResetEvent occurs. While an event remains in the Signaled state, callers of NdisWaitEvent on that Event are dispatched for execution without waiting.

Requirements

Header ndis.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

NDIS Library Functions
NdisInitializeEvent
NdisSetEvent
NdisWaitEvent