NDIS_FILTER_ATTRIBUTES structure (ndis.h)

The NDIS_FILTER_ATTRIBUTES structure defines the attributes of a filter module.

Syntax

typedef struct _NDIS_FILTER_ATTRIBUTES {
  NDIS_OBJECT_HEADER Header;
  ULONG              Flags;
} NDIS_FILTER_ATTRIBUTES, *PNDIS_FILTER_ATTRIBUTES;

Members

Header

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.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Header ndis.h (include Ndis.h)

See also

NDIS_OBJECT_HEADER

NdisFSetAttributes