// ucxusbdevice.h
typedef struct _USBDEVICE_HUB_INFO {
USBDEVICE_MGMT_HEADER Header;
ULONG NumberOfPorts;
ULONG NumberOfTTs;
ULONG TTThinkTime;
} USBDEVICE_HUB_INFO, *PUSBDEVICE_HUB_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
Contains parameters for a request to get information about the specified hub. This structure is passed by UCX in request parameters (Parameters.Others.Arg1) of a framework request object of the EVT_UCX_USBDEVICE_HUB_INFO callback function.
HeaderA USBDEVICE_MGMT_HEADER structure that contains the handle for the USB hub or device.
NumberOfPortsThe count of ports available for the USB hub, filled by the client driver.
NumberOfTTsThe count of TT hubs, filled by the client driver.
TTThinkTimeThe ThinkTime property of the TT hub, filled by the client driver.