AcxDataFormatListCreate function (acxdataformat.h)

The AcxDataFormatListCreate function creates a new ACX data format list.

Syntax

NTSTATUS AcxDataFormatListCreate(
  [in]  WDFDEVICE                   Device,
  [in]  PWDF_OBJECT_ATTRIBUTES      Attributes,
  [in]  PACX_DATAFORMAT_LIST_CONFIG Config,
  [out] ACXDATAFORMATLIST           *DataFormatList
);

Parameters

[in] Device

The WDFDEVICE to which the data format list applies.

[in] Attributes

Pointer to a WDF_OBJECT_ATTRIBUTES structure used to describe the Device.

[in] Config

Pointer to an ACX_DATAFORMAT_LIST_CONFIG structure used to configure the DataFormatList.

[out] DataFormatList

Pointer to the newly created ACX data format list.

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.

Requirements

Requirement Value
Header acxdataformat.h
IRQL PASSIVE_LEVEL

See also