NdisFIndicateStatus (Compact 2013)
3/26/2014
This function passes on a filtered status indication from an underlying driver or originates a status indication.
Syntax
VOID
NdisFIndicateStatus(
IN NDIS_HANDLE NdisFilterHandle,
IN PNDIS_STATUS_INDICATION StatusIndication
);
Parameters
- NdisFilterHandle
The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.
- StatusIndication
A pointer to an NDIS_STATUS_INDICATION structure that contains the status information.
Return Value
None
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 it sets its registration attributes and the NdisFSetAttributes function returns. The driver must not call NdisFIndicateStatus after it returns from the FilterDetach function.
Requirements
Header |
ndis.h |
See Also
Reference
NDIS Status Indication Functions for Filter Drivers
FilterAttach
FilterDetach
FilterStatus
NDIS_STATUS_INDICATION
NdisFSetAttributes