// 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 referenceNo description available.
The AcxCompositeTemplateCreate function is used to create a composite 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 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.
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.