// ndis.h
VOID NdisMIndicateStatusEx(
[in] NDIS_HANDLE MiniportAdapterHandle,
[in] PNDIS_STATUS_INDICATION StatusIndication
);
View the official Windows Driver Kit DDI reference
No description available.
The NdisMIndicateStatusEx function reports a change in the status of a miniport adapter.
MiniportAdapterHandle
[in]The miniport adapter handle that NDIS passed at the MiniportAdapterHandle parameter of the MiniportInitializeEx function.
StatusIndication
[in]A pointer to an NDIS_STATUS_INDICATION structure that contains the status information.
When a miniport driver calls NdisMIndicateStatusEx, NDIS calls each bound protocol driver's ProtocolStatusEx function. This allows a bound protocol driver to log the change in status of an underlying miniport adapter or to take action.
A miniport driver can call NdisMIndicateStatusEx after setting its registration attributes even if the driver is still in the context of the MiniportInitializeEx function. The driver must not call NdisMIndicateStatusEx after it returns from the MiniportHaltEx function.