// ucmucsippm.h
NTSTATUS UcmUcsiConnectorCollectionAddConnector(
[in] UCMUCSI_CONNECTOR_COLLECTION ConnectorCollectionObject,
[in] PUCMUCSI_CONNECTOR_INFO ConnectorInfo
);
View the official Windows Driver Kit DDI referenceNo description available.
Adds a connector to the connector collection object.
ConnectorCollectionObject [in]The handle to the connector collection object that the client driver retrieved in a previous call to UcmUcsiConnectorCollectionCreate.
ConnectorInfo [in]A pointer to a UCMUCSI_CONNECTOR_INFO structure that contains information about the connector to add.
Returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method can return an appropriate NTSTATUS value.
The client driver must not call UcmUcsiConnectorCollectionAddConnector after UcmUcsiPpmCreate because it would have no effect on the already existing PPM object.
UcmUcsiConnectorCollectionCreate