NDIS_FILTER_ATTRIBUTES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ndis-_ndis_filter_attributes)

_NDIS_FILTER_ATTRIBUTES structure

Description

The NDIS_FILTER_ATTRIBUTES structure defines the attributes of a filter module.

Members

The 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.

Flags

Reserved. Set this member to zero.

Remarks

A filter drivers passes an NDIS_FILTER_ATTRIBUTES structure to the NdisFSetAttributes function.

See also

NDIS_OBJECT_HEADER

NdisFSetAttributes