// ndis.h
VOID NdisMPauseComplete(
[in] NDIS_HANDLE MiniportAdapterHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
A miniport driver must call the NdisMPauseComplete function to complete a pause operation if the driver returned NDIS_STATUS_PENDING from its MiniportPause function.
MiniportAdapterHandle [in]The miniport adapter handle that NDIS passed to the MiniportAdapterHandle parameter of MiniportInitializeEx.
NDIS calls a miniport driver's MiniportPause function to initiate a pause request for a miniport adapter. The miniport adapter remains in the Pausing state until the pause operation is complete.
After a miniport driver completes all outstanding send requests and NDIS returns all the network data structures in outstanding receive indications to the driver, the driver calls NdisMPauseComplete to complete the pending pause request. After the driver calls NdisMPauseComplete, the miniport adapter is in the Paused state.
NDIS calls the MiniportRestart function to initiate a restart request for a miniport adapter that is paused.