// acxdataformat.h
NTSTATUS AcxDataFormatListCreate(
[in] WDFDEVICE Device,
[in] PWDF_OBJECT_ATTRIBUTES Attributes,
[in] PACX_DATAFORMAT_LIST_CONFIG Config,
[out] ACXDATAFORMATLIST *DataFormatList
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxDataFormatListCreate function creates a new ACX data format list.
Device [in]The WDFDEVICE to which the data format list applies.
Attributes [in]Pointer to a WDF_OBJECT_ATTRIBUTES structure used to describe the Device.
Config [in]Pointer to an ACX_DATAFORMAT_LIST_CONFIG structure used to configure the DataFormatList.
DataFormatList [out]Pointer to the newly created ACX data format list.
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.