NdisFPauseComplete function (ndis.h)
A filter driver must call the NdisFPauseComplete function to complete a pause operation if the driver returned NDIS_STATUS_PENDING from its FilterPause function.
Syntax
void NdisFPauseComplete(
[in] NDIS_HANDLE NdisFilterHandle
);
Parameters
[in] NdisFilterHandle
The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.
Return value
None
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.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.0 and later. |
Target Platform | Desktop |
Header | ndis.h (include Ndis.h) |
Library | Ndis.lib |
IRQL | <= DISPATCH_LEVEL |
DDI compliance rules | Irql_Filter_Driver_Function(ndis) |