// ndis.h
VOID NdisFIndicateStatus(
[in] NDIS_HANDLE NdisFilterHandle,
[in] PNDIS_STATUS_INDICATION StatusIndication
);
View the official Windows Driver Kit DDI reference
No description available.
The NdisFIndicateStatus function passes on a filtered status indication from an underlying driver or originates a status indication.
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.
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.