// acxcircuit.h
NTSTATUS AcxCircuitAddPhysicalConnections(
ACXCIRCUIT Circuit,
PACX_PHYSICAL_CONNECTION Connections,
ULONG ConnectionsCount
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitAddPhysicalConnections function adds physical connections to an ACXCIRCUIT.
CircuitAn existing ACXCIRCUIT object. For more information, see Summary of ACX Objects.
ConnectionsA pointer to an ACX_CONNECTION structure that describes the pin structure including the pin IDs.
ConnectionsCountThe number of physical connections that will be added to the circuit. This is a one based count.
Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.
At this time this DDI is reserved. See DDIs of ACXMANAGER, ACXCIRCUITTEMPLATE and ACXCOMPOSITEMPLATE on how to link multiple ACXCIRCUITs together.
Example usage is shown below.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.