NdisFIndicateStatus - NtDoc

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

VOID NdisFIndicateStatus(
  [in] NDIS_HANDLE             NdisFilterHandle,
  [in] PNDIS_STATUS_INDICATION StatusIndication
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NdisFIndicateStatus function

Description

The NdisFIndicateStatus function passes on a filtered status indication from an underlying driver or originates a status indication.

Parameters

NdisFilterHandle [in]

The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.

StatusIndication [in]

A pointer to an NDIS_STATUS_INDICATION structure that contains the status information.

Remarks

Filter drivers can call NdisFIndicateStatus from the FilterStatus function, to pass on a filtered status indication to overlying drivers.

To originate status indications, filter drivers call NdisFIndicateStatus without a prior NDIS call to FilterStatus.

A filter driver can call NdisFIndicateStatus after setting its registration attributes and the NdisFSetAttributes function returns. The driver must not call NdisFIndicateStatus after it returns from the FilterDetach function.

See also

FilterAttach

FilterDetach

FilterStatus

NDIS_STATUS_INDICATION

NdisFSetAttributes