NdisFPauseComplete - NtDoc

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

VOID NdisFPauseComplete(
  [in] NDIS_HANDLE NdisFilterHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NdisFPauseComplete function

Description

A filter driver must call the NdisFPauseComplete function to complete a pause operation if the driver returned NDIS_STATUS_PENDING from its FilterPause function.

Parameters

NdisFilterHandle [in]

The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.

Remarks

NDIS calls a filter driver's FilterPause function to initiate a pause request for a filter module. The filter module remains in the Pausing state until the pause operation is complete.

After a pending pause operation is complete, the driver calls NdisFPauseComplete to notify NDIS. After the driver calls NdisFPauseComplete, the filter module is in the Paused state.

See also

FilterAttach

FilterPause