USBPM_HUB_CONNECTOR_HANDLES - NtDoc

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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-usbpmapi-_usbpm_hub_connector_handles)

_USBPM_HUB_CONNECTOR_HANDLES structure

Description

Stores the connector handles for all connectors on a hub. This structure is used in the UsbPm_RetrieveHubConnectorHandles function.

Members

HubHandle

The handle of this hub.

ConnectorCount

The number of connectors on this hub.

ConnectorHandles

A 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.

Remarks

See also