NDIS_PD_CONFIG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddndis.h

typedef struct _NDIS_PD_CONFIG {
  NDIS_OBJECT_HEADER Header;
  ULONG              Flags;
  BOOLEAN            Enabled;
  ULONG              CapabilitiesOffset;
  ULONG              CapabilitiesSize;
} NDIS_PD_CONFIG;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddndis-_ndis_pd_config)

_NDIS_PD_CONFIG structure

Description

This structure holds configuration data for the PD provider.

Members

The NDIS_OBJECT_HEADER structure for the NDIS_PD_CONFIG structure. Set the members of this structure as follows:

Flags

This member is reserved and must be set to 0.

Enabled

A BOOLEAN value that is set to TRUE if the PDPI provider's PacketDirect capability is enabled. Otherwise, this member is FALSE.

CapabilitiesOffset

If the CapabilitiesSize member is greater than zero, this is a ULONG-aligned pointer to an NDIS_PD_CAPABILITIES structure.

CapabilitiesSize

If this member is greater than zero, it contains the size of the NDIS_PD_CAPABILITIES structure that the CapabilitiesOffset member points to.

Remarks

This structure must be aligned on an 8-byte boundary.

See also

NDIS_OBJECT_HEADER