AcxCompositeTemplateCreate - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxmanager.h

NTSTATUS AcxCompositeTemplateCreate(
  [in]  WDFDRIVER                      Driver,
  [in]  PWDF_OBJECT_ATTRIBUTES         Attributes,
  [in]  PACX_COMPOSITE_TEMPLATE_CONFIG Config,
  [out] ACXCOMPOSITETEMPLATE           *Template
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The AcxCompositeTemplateCreate function is used to create a composite 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 composite template.

Attributes [in]

A pointer to the WDF_OBJECT_ATTRIBUTES structure to use when creating the composite template.

Config [in]

A pointer to an ACX_COMPOSITE_TEMPLATE_CONFIG structure to use when creating the composite template.

Template [out]

A pointer to the newly created composite 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