Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The AcxCircuitTemplateCreate function is used to create a circuit template for use by the audio class extension (ACX) manager.
Syntax
NTSTATUS AcxCircuitTemplateCreate(
[in] WDFDRIVER Driver,
[in] PWDF_OBJECT_ATTRIBUTES Attributes,
[in] PACX_CIRCUIT_TEMPLATE_CONFIG Config,
[out] ACXCIRCUITTEMPLATE *Template
);
Parameters
[in] Driver
A WDFDRIVER object, described in Summary of Framework Objects, that will be associated with the circuit template.
[in] Attributes
A pointer to the WDF_OBJECT_ATTRIBUTES structure to use when creating the circuit template.
[in] Config
A pointer to an ACX_CIRCUIT_TEMPLATE_CONFIG structure to use when creating the circuit template.
[out] Template
A pointer to the newly created circuit template object.
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 |