UsbPm_RetrieveHubConnectorHandles - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-usbpmapi-usbpm_retrievehubconnectorhandles)

UsbPm_RetrieveHubConnectorHandles function

Description

Retrieves connector handles for all connectors of a hub.

Parameters

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.

Return value

This function returns NTSTATUS.

Remarks

See also