// usbpmapi.h
NTSTATUS UsbPm_RetrieveHubConnectorHandles(
[In] USBPM_CLIENT ClientHandle,
[In] USBPM_HUB HubHandle,
[Out] PUSBPM_HUB_CONNECTOR_HANDLES HubConnectorHandles
);
View the official Windows Driver Kit DDI referenceNo description available.
Retrieves connector handles for all connectors of a hub.
ClientHandle [In]The handle that the client driver received in a previous call to UsbPm_Register.
HubHandle [In]The handle to the hub.
HubConnectorHandles [Out]A pointer to a USBPM_HUB_CONNECTOR_HANDLES structures that contains the connector handles. Initialize this structure by calling USBPM_HUB_CONNECTOR_HANDLES_INIT. 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.
This function returns NTSTATUS.