// acxmanager.h
NTSTATUS AcxCompositeTemplateAssignCircuits(
[in] ACXCOMPOSITETEMPLATE CompositeTemplate,
[in, reads(CircuitTemplatesCount)] ACXCIRCUITTEMPLATE *CircuitTemplates,
[in] ULONG CircuitTemplatesCount
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCompositeTemplateAssignCircuits function adds an array of circuit templates to the specified composite template.
CompositeTemplate [in]The composite template to which the circuit templates are added.
CircuitTemplates [in, reads(CircuitTemplatesCount)]A pointer to an array of ACXCIRCUITTEMPLATE objects to add to the specified CompositeTemplate.
CircuitTemplatesCount [in]The number of ACXCIRCUITTEMPLATE objects in the CircuitTemplates array.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.