// ucxroothub.h
typedef struct _ROOTHUB_20PORTS_INFO {
ULONG Size;
USHORT NumberOfPorts;
USHORT PortInfoSize;
PROOTHUB_20PORT_INFO *PortInfoArray;
} ROOTHUB_20PORTS_INFO, *PROOTHUB_20PORTS_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
This structure that has an array of 2.0 ports supported by the root hub. This structure is provided by UCX in a framework request in the EVT_UCX_ROOTHUB_GET_20PORT_INFO callback function.
SizeThe size in bytes of this structure.
NumberOfPortsThe number of USB 2.0 ports connected to the root hub.
PortInfoSizeThe size of the ROOTHUB_20PORTS_INFO structure.
PortInfoArrayA pointer to an array of PROOTHUB_20PORT_INFO structures.
EVT_UCX_ROOTHUB_GET_20PORT_INFO