AcxCircuitAddPhysicalConnections function (acxcircuit.h)

The AcxCircuitAddPhysicalConnections function adds physical connections to an ACXCIRCUIT.

Syntax

NTSTATUS AcxCircuitAddPhysicalConnections(
  ACXCIRCUIT               Circuit,
  PACX_PHYSICAL_CONNECTION Connections,
  ULONG                    ConnectionsCount
);

Parameters

Circuit

An existing ACXCIRCUIT object. For more information, see Summary of ACX Objects.

Connections

A pointer to an ACX_CONNECTION structure that describes the pin structure including the pin IDs.

ConnectionsCount

The number of physical connections that will be added to the circuit. This is a one based count.

Return value

Returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code. For more information, see Using NTSTATUS Values.

Remarks

At this time this DDI is reserved. See DDIs of ACXMANAGER, ACXCIRCUITTEMPLATE and ACXCOMPOSITEMPLATE on how to link multiple ACXCIRCUITs together.

Example

Example usage is shown below.


ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

Requirements

Requirement Value
Header acxcircuit.h
IRQL PASSIVE_LEVEL

See also