// acxdataformat.h
NTSTATUS AcxDataFormatListRetrieveNextFormat(
[in] ACXDATAFORMATLIST AcxDataFormatList,
[in, out] PACX_DATAFORMAT_LIST_ITERATOR Iterator,
[out] ACXDATAFORMAT *Format
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxDataFormatListRetrieveNextFormat function gets the next ACX data format when iterating an ACX data format list.
AcxDataFormatList [in]The ACX data format list from which to get the next ACXDATAFORMAT object.
Iterator [in, out]Pointer to the ACX_DATAFORMAT_LIST_ITERATOR structure used to iterate AcxDataFormatList.
Format [out]Pointer to the next ACXDATAFORMAT object in AcxDataFormatList.
The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.
After AcxDataFormatListRetrieveNextFormat returns, Iterator is updated to point to the next data format in the list after Format.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.