// netadapterpacket.h
typedef struct _NET_EXTENSION_QUERY {
ULONG Size;
PCWSTR Name;
ULONG Version;
NET_EXTENSION_TYPE Type;
} NET_EXTENSION_QUERY;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_EXTENSION_QUERY structure represents a query for a packet or fragment extension.
SizeThe size of this structure, in bytes.
NameThe name of the extension to be queried.
VersionThe version of the extension to be queried.
TypeA NET_EXTENSION_TYPE value that specifies the type of extension being queried.
Call NET_EXTENSION_QUERY_INIT to initialize this structure.
For more info about extensions, see Packet descriptors and extensions.
For a code example of querying extension offsets, see Transmit and receive queues.
Packet descriptors and extensions