NdisIndicateReceiveComplete

VOID
    NdisIndicateReceiveComplete(
        IN NDIS_HANDLE  NdisBindingContext
        );

NdisIndicateReceiveComplete is called by the NIC driver to forward a receive complete indication to a protocol driver.

Parameters

NdisBindingContext
Specifies the context that the NDIS interface library associates with the binding.

Comments

To deliver the indication, NdisIndicateReceiveComplete, calls the ProtocolReceiveComplete function of the driver identified by the given handle at NdisBindingContext.

Callers of NdisIndicateReceiveComplete run at IRQL <= DISPATCH_LEVEL.

See Also

ProtocolReceiveComplete