This function gets the list of files automatically converted to HTML during a call to fpConvertStream()
or KVHTMLConvertFile()
.
char ** pascal _export fpGetConvertFileList( void *pContext, int *pnSize );
|
A pointer returned from |
|
A pointer to the number of files generated by the conversion. |
If no files are converted, the return value is a NULL
pointer. Otherwise, the return value is a pointer to an array of strings that provides the available path information for each converted file.
The array of file path information includes all externally generated files, including graphic files. Note that the main output file is not included in the array, nor in the count of the number of files converted.
The memory used by the array of file path information is freed by the API.
This function runs in-process or out of process. See Convert Files Out of Process.
When converting out of process, this function must be called after the call to KVHTMLStartOOPSession()
and before the call to KVHTMLEndOOPSession()
. See KVHTMLStartOOPSession() and KVHTMLEndOOPSession().
|