// 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 referenceNo description available.
This structure represents a provider's receive or transmit queue
HeaderThe NDIS_OBJECT_HEADER structure for the NDIS_PD_QUEUE structure. Set the members of this structure as follows:
FlagsThis member is reserved and must be set to 0.
DispatchPDPlatformReservedReserved for the platform.
PDClientReservedReserved for the client.