// usbioctl.h
typedef struct _USB_HUB_INFORMATION {
USB_HUB_DESCRIPTOR HubDescriptor;
BOOLEAN HubIsBusPowered;
} USB_HUB_INFORMATION, *PUSB_HUB_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The USB_HUB_INFORMATION structure contains information about a hub.
HubDescriptorA USB_HUB_DESCRIPTOR structure that contains selected information from the hub descriptor.
HubIsBusPoweredA Boolean value that indicates whether the hub is bus-powered. TRUE, the hub is bus-powered; FALSE, the hub is self-powered.