// ndis.h
VOID NdisFPauseComplete(
[in] NDIS_HANDLE NdisFilterHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
A filter driver must call the NdisFPauseComplete function to complete a pause operation if the driver returned NDIS_STATUS_PENDING from its FilterPause function.
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.
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.