// usbpmapi.h
typedef struct _USBPM_HUB_CONNECTOR_HANDLES {
USBPM_HUB HubHandle;
ULONG ConnectorCount;
USBPM_CONNECTOR *ConnectorHandles;
} USBPM_HUB_CONNECTOR_HANDLES, *PUSBPM_HUB_CONNECTOR_HANDLES;
View the official Windows Driver Kit DDI referenceNo description available.
Stores the connector handles for all connectors on a hub. This structure is used in the UsbPm_RetrieveHubConnectorHandles function.
HubHandleThe handle of this hub.
ConnectorCountThe number of connectors on this hub.
ConnectorHandlesA pointer to a connector handle array of all the connectors on this hub. The array is allocated by the Policy Manager is valid during the life time of the hub. The client driver must not change the array or release the array after use.