Share via


NdisResetEvent

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

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

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

NdisInitializeEvent
NdisSetEvent
NdisWaitEvent