// ntddndis.h
typedef struct _NDIS_LINK_SPEED {
ULONG64 XmitLinkSpeed;
ULONG64 RcvLinkSpeed;
} NDIS_LINK_SPEED, *PNDIS_LINK_SPEED;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_LINK_SPEED structure specifies transmit and receive link speeds.
XmitLinkSpeedThe transmit link speed in bits per second. A value of -1 in this member indicates that the transmit link speed is unknown.
RcvLinkSpeedThe receive link speed in bits per second. A value of -1 in this member indicates that the receive link speed is unknown.
The NDIS_LINK_SPEED structure specifies link speeds in the OID_GEN_LINK_SPEED_EX and OID_GEN_MAX_LINK_SPEED OIDs.