// acxpin.h
NTSTATUS AcxMicArrayGeometryCreate(
[in] ACXCIRCUIT AcxCircuit,
[in] PWDF_OBJECT_ATTRIBUTES Attributes,
[in] PACX_MICARRAYGEOMETRY_CONFIG Config,
[out] ACXMICARRAYGEOMETRY *MicArrayGeometry
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxMicArrayGeometryCreate function creates and initializes a new ACX_MIC_ARRAY_GEOMETRY object.
AcxCircuit [in]The ACXCIRCUIT object to which the mic array geometry will be added. For more information about ACX objects, see Summary of ACX Objects.
Attributes [in]Pointer to a WDF_OBJECT_ATTRIBUTES structure to use when initializing the new ACX_MIC_ARRAY_GEOMETRY structure.
Config [in]Pointer to an ACX_MICARRAYGEOMETRY_CONFIG structure to use when initializing the new ACX_MIC_ARRAY_GEOMETRY structure.
MicArrayGeometry [out]Pointer to the newly created ACX_MIC_ARRAY_GEOMETRY structure.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
Call the ACX_MICARRAYGEOMETRY_CONFIG_INIT function to initialize the ACX_MICARRAYGEOMETRY_CONFIG structure before using it to call AcxMicArrayGeometryCreate.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.