// ndis.h
typedef struct _NDIS_FILTER_ATTRIBUTES {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
} NDIS_FILTER_ATTRIBUTES, *PNDIS_FILTER_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_FILTER_ATTRIBUTES structure defines the attributes of a filter module.
HeaderThe NDIS_OBJECT_HEADER structure for the filter attributes structure (NDIS_FILTER_ATTRIBUTES). Set the Type member of the structure that Header specifies to NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES, the Revision member to NDIS_FILTER_ATTRIBUTES_REVISION_1, and the Size member to NDIS_SIZEOF_FILTER_ATTRIBUTES_REVISION_1.
FlagsReserved. Set this member to zero.
A filter drivers passes an NDIS_FILTER_ATTRIBUTES structure to the NdisFSetAttributes function.