AcxCompositeTemplateAssignCircuits function (acxmanager.h)

The AcxCompositeTemplateAssignCircuits function adds an array of circuit templates to the specified composite template.

Syntax

NTSTATUS AcxCompositeTemplateAssignCircuits(
  [in]                               ACXCOMPOSITETEMPLATE CompositeTemplate,
  [in, reads(CircuitTemplatesCount)] ACXCIRCUITTEMPLATE   *CircuitTemplates,
  [in]                               ULONG                CircuitTemplatesCount
);

Parameters

[in] CompositeTemplate

The composite template to which the circuit templates are added.

[in, reads(CircuitTemplatesCount)] CircuitTemplates

A pointer to an array of ACXCIRCUITTEMPLATE objects to add to the specified CompositeTemplate.

[in] CircuitTemplatesCount

The number of ACXCIRCUITTEMPLATE objects in the CircuitTemplates array.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxmanager.h
IRQL PASSIVE_LEVEL

See also