NdisMIndicateStatusEx - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisMIndicateStatusEx(
  [in] NDIS_HANDLE             MiniportAdapterHandle,
  [in] PNDIS_STATUS_INDICATION StatusIndication
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndismindicatestatusex)

NdisMIndicateStatusEx function

Description

The NdisMIndicateStatusEx function reports a change in the status of a miniport adapter.

Parameters

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.

Remarks

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.

See also

MiniportHaltEx

MiniportInitializeEx

NDIS_STATUS_INDICATION

ProtocolStatusEx