Share via


NdisResetEvent (Windows CE 5.0)

Send Feedback

This function clears the signaled state of a given event.

VOID NdisResetEvent(PNDIS_EVENTEvent);

Parameters

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

Return Values

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

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

NdisInitializeEvent | NdisSetEvent | NdisWaitEvent

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.