fpFileToInputStreamCreate()
This function creates an input stream from an input file.
Syntax
BOOL pascal _export fpFileToInputStreamCreate( void *pContext, char *pszFileName, KVInputStream *pInput);
Arguments
|
A pointer to a KeyView Export session that you initialized by calling fpInit(). |
|
A pointer to the name of the input file to be converted. |
|
A pointer to the developer-assigned instance of |
Returns
-
If the call is successful, the return value is
TRUE
. -
If this call is unsuccessful, the return value is
FALSE
. Processing is halted.
Discussion
-
After the conversion is complete, call
fpFileToInputStreamFree()
to free the memory allocated by this function. -
On Windows,
pszFileName
must be in the local Windows code page.
Example
The following sample code is from the cnv2xml
sample program:
if(!(*KVXMLInt.fpFileToInputStreamCreate)(pKVXML, argv[i++], &Input)) { printf("Error creating input stream\n"); (*KVXMLInt.fpShutDown)(pKVXML); mpFreeLibrary(hKVXML); return (5); }