WinCvtGetConverterExportCapabilityList

The WinCvtGetConverterExportCapabilityList interrogates a particular converter file and obtains the list of export conversions it is capable of performing.

WINCVT_STATUS
WinCvtGetConverterExportCapabilityList(
  LPCSTR szConverter,   // Path to the converter to query
  WINCVT_CVT_LIST* List // List of the converter's capabilities
);

Parameters

szConverter
Path to the converter to query.
List
Pointer to a list object. Upon successful completion of this function, this will point to a list of export conversion classes that can be provided by this converter. To enumerate this list, use the WinCvtGetFirstClass and WinCvtGetNextClass functions. To free this list, call WinCvtFreeConverterList.

Return Values

If the function succeeds, the return value is WINCVT_SUCCESS. If the function fails, the return value is the error code describing the failure. This code can be turned into a human readable string using the WinCvtGetErrorString.

Remarks

The WinCvtGetConverterExportCapabilityList interrogates a particular converter file and obtains the list of export conversions it is capable of performing. To query the import converter capabilities, call WinCvtGetConverterImportCapabilityList.

QuickInfo

WinCvt: Requires 0.1.0.
Header: Declared in WinCvt.h.
Import Library: Use WinCvt.lib.

See Also

WinCvtFreeConverterList, WinCvtGetFirstClass, WinCvtGetNextClass, WinCvtGetConverterImportCapabilityList, WinCvtGetErrorString.