AcxDataFormatListRetrieveNextFormat - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// acxdataformat.h

NTSTATUS AcxDataFormatListRetrieveNextFormat(
  [in]      ACXDATAFORMATLIST             AcxDataFormatList,
  [in, out] PACX_DATAFORMAT_LIST_ITERATOR Iterator,
  [out]     ACXDATAFORMAT                 *Format
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxdataformat-acxdataformatlistretrievenextformat)

Description

The AcxDataFormatListRetrieveNextFormat function gets the next ACX data format when iterating an ACX data format list.

Parameters

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.

Return value

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

Remarks

After AcxDataFormatListRetrieveNextFormat returns, Iterator is updated to point to the next data format in the list after Format.

ACX requirements

Minimum ACX version: 1.0

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

See also