NdisResetEvent (NDIS 5.1) function

Note   NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.

NdisResetEvent clears the Signaled state of a given event.

Syntax

VOID NdisResetEvent(
  _In_ PNDIS_EVENT Event
);

Parameters

  • Event [in]
    Pointer 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

Target platform

Universal

Version

See NdisResetEvent.

Header

Ndis.h (include Ndis.h)

Library

Ndis.lib

IRQL

<= DISPATCH_LEVEL

See also

NdisInitializeEvent

NdisSetEvent

NdisWaitEvent

 

 

Send comments about this topic to Microsoft