VOID
NdisIndicateStatusComplete(
IN NDIS_HANDLE NdisBindingContext
);
NdisIndicateStatusComplete is called by the NIC driver to forward a status complete indication to a protocol driver.
To deliver the indication, NdisIndicateStatusComplete calls the ProtocolStatusComplete function of the driver identified by the given handle at NdisBindingContext.
Interrupts are enabled during the NdisIndicateStatusComplete operation. The NIC driver does not have to make calls to this function in a one-to-one correspondence with NdisIndicateStatus calls. It can issue a single NdisIndicateStatusComplete call for several calls to NdisIndicateStatus.
Callers of NdisIndicateStatusComplete can be running at any IRQL.