NdisResetEvent - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisResetEvent(
  [in] PNDIS_EVENT Event
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisresetevent)

NdisResetEvent function

Description

The NdisResetEvent function clears the Signaled state of a given event.

Parameters

Event [in]

A pointer to an initialized event object for which the caller provided the storage.

Remarks

NdisResetEvent explicitly sets the state of the given event to not-signaled.

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

See also

NdisInitializeEvent

NdisSetEvent

NdisWaitEvent