Share via


NdisMIndicateStatusEx (Compact 2013)

3/26/2014

This function reports a change in the status of a miniport adapter.

Syntax

VOID
  NdisMIndicateStatusEx(
    IN NDIS_HANDLE  MiniportAdapterHandle,
    IN PNDIS_STATUS_INDICATION  StatusIndication
    );

Parameters

  • MiniportAdapterHandle
    The miniport adapter handle that NDIS passed at the MiniportAdapterHandle parameter of the MiniportInitializeEx function.

Return Value

None

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 it sets 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.

Requirements

Header

ndis.h

See Also

Reference

NDIS Status Indication Functions for Miniport Drivers
MiniportHaltEx
MiniportInitializeEx
NDIS_STATUS_INDICATION
ProtocolStatusEx