// acxmanager.h
NTSTATUS AcxCircuitTemplateCreate(
[in] WDFDRIVER Driver,
[in] PWDF_OBJECT_ATTRIBUTES Attributes,
[in] PACX_CIRCUIT_TEMPLATE_CONFIG Config,
[out] ACXCIRCUITTEMPLATE *Template
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxCircuitTemplateCreate function is used to create a circuit template for use by the audio class extension (ACX) manager.
Driver [in]A WDFDRIVER object, described in Summary of Framework Objects, that will be associated with the circuit template.
Attributes [in]A pointer to the WDF_OBJECT_ATTRIBUTES structure to use when creating the circuit template.
Config [in]A pointer to an ACX_CIRCUIT_TEMPLATE_CONFIG structure to use when creating the circuit template.
Template [out]A pointer to the newly created circuit template object.
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.