NDIS_PD_QUEUE - NtDoc

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

typedef struct _NDIS_PD_QUEUE {
  NDIS_OBJECT_HEADER           Header;
  ULONG                        Flags;
  const NDIS_PD_QUEUE_DISPATCH *Dispatch;
  PVOID                        PDPlatformReserved[2];
  PVOID                        PDClientReserved[2];
} NDIS_PD_QUEUE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_NDIS_PD_QUEUE structure

Description

This structure represents a provider's receive or transmit queue

Members

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

Flags

This member is reserved and must be set to 0.

Dispatch

See NDIS_PD_QUEUE_DISPATCH.

PDPlatformReserved

Reserved for the platform.

PDClientReserved

Reserved for the client.

See also

NDIS_OBJECT_HEADER