NdisCompleteQueryStatistics

VOID
    NdisCompleteQueryStatistics(
        IN NDIS_HANDLE  NdisAdapterHandle,
        IN PNDIS_REQUEST  NdisRequest,
        IN NDIS_STATUS  Status
        );

NdisCompleteQueryStatistics is called by the NIC driver to perform postprocessing for an asynchronous global query operation.

Parameters

NdisAdapterHandle
Identifies the handle that the NDIS interface library associates with the network interface card.
NdisRequest
Points to a request structure. The data in the InformationBuffer member must be valid, and the BytesWritten member must reflect how much data is provided.
Status
Indicates the final status that the caller’s MacQueryGlobalStatistics function returns.

Comments

This function completes differently from other NdisXxx functions because NDIS never calls a driver’s MacQueryGlobalStatistics function for a specific network interface card binding.

Callers of NdisCompleteQueryStatistics run at IRQL <= DISPATCH_LEVEL.

See Also

MacQueryGlobalStatistics