// usbioctl.h
typedef struct _USB_NODE_CONNECTION_SUPERSPEEDPLUS_INFORMATION {
ULONG ConnectionIndex;
ULONG Length;
USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED RxSuperSpeedPlus;
ULONG RxLaneCount;
USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED TxSuperSpeedPlus;
ULONG TxLaneCount;
} USB_NODE_CONNECTION_SUPERSPEEDPLUS_INFORMATION, *PUSB_NODE_CONNECTION_SUPERSPEEDPLUS_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
ConnectionIndexThe one based port number.
LengthThe length of this structure.
RxSuperSpeedPlusCurrent operating speed for receiving lanes.
RxLaneCountThe zero-based number of receiving lanes. For actual lane count, add one.
TxSuperSpeedPlusCurrent operating speed for transmitting lanes.
TxLaneCountThe zero-based number of transmitting lanes. For actual lane count, add one.