AcxMicArrayGeometryCreate - NtDoc

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

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxpin-acxmicarraygeometrycreate)

Description

The AcxMicArrayGeometryCreate function creates and initializes a new ACX_MIC_ARRAY_GEOMETRY object.

Parameters

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.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

Call the ACX_MICARRAYGEOMETRY_CONFIG_INIT function to initialize the ACX_MICARRAYGEOMETRY_CONFIG structure before using it to call AcxMicArrayGeometryCreate.

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

See also