AcxCircuitTemplateCreate - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxmanager-acxcircuittemplatecreate)

Description

The AcxCircuitTemplateCreate function is used to create a circuit template for use by the audio class extension (ACX) manager.

Parameters

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.

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.

See also