VOID
NdisCompleteRequest(
IN NDIS_HANDLE NdisBindingContext,
IN PNDIS_REQUEST NdisRequest,
IN NDIS_STATUS Status
);
NdisCompleteRequest is called by the NIC driver for an asynchronous request operation.
Parameters
NdisBindingContext
Specifies the context that the NDIS interface library associates with the binding.
NdisRequest
Points to a request structure.
Status
Specifies the final status of the request.
Comments
NdisCompleteRequest calls the ProtocolRequestComplete function of the protocol driver that originally called NdisRequest.
Callers of NdisCompleteRequest run at IRQL <= DISPATCH_LEVEL.
See Also