// netadapter.h
typedef struct _NET_ADAPTER_LINK_LAYER_CAPABILITIES {
ULONG Size;
ULONG64 MaxTxLinkSpeed;
ULONG64 MaxRxLinkSpeed;
} NET_ADAPTER_LINK_LAYER_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
Describes the link layer capabilities of the adapter.
SizeThe size of this structure, in bytes.
MaxTxLinkSpeedThe maximum transmit link speed of the adapter in bits per second. For more information, see OID_GEN_MAX_LINK_SPEED.
MaxRxLinkSpeedThe maximum receive link speed of the adapter in bits per second. For more information, see OID_GEN_MAX_LINK_SPEED.
The client driver passes an initialized NET_ADAPTER_LINK_LAYER_CAPABILITIES structure as an input parameter value to NetAdapterSetLinkLayerCapabilities.
Call NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT to initialize this structure.