This function creates an input stream from an input file.
BOOL pascal _export fpFileToInputStreamCreate( void *pContext, char *pszFileName, KVInputStream *pInput);
|
A pointer returned from fpInit() or fpInitWithLicenseData(). |
|
A pointer to the name of the input file to be converted. |
|
A pointer to the developer-assigned instance of |
If the call is successful, the return value is TRUE
.
If this call is unsuccessful, the return value is FALSE
. Processing is halted.
After the conversion is complete, call fpFileToInputStreamFree()
to free the memory allocated by this function.
The following sample code is from the cnv2html
sample program:
if(!(*KVHTMLInt.fpFileToInputStreamCreate)(pKVHTML, argv[i++], &Input)) { printf("Error creating input stream\n"); (*KVHTMLInt.fpShutDown)(pKVHTML); mpFreeLibrary(hKVHTML); return (5); }
|