fpCloseFile()

This function frees the memory allocated by fpOpenFile() and closes the file.

Syntax

int (pascal *fpCloseFile) (void *pFile);

Arguments

pFile The identifier of the file. This is a file handle returned from fpOpenFile().

Returns

  • If the file is closed, the return value is KVERR_Success.

  • If the file is not closed, the return value is an error code.

Example

extractInterface->fpCloseFile(pFile);
pFile = NULL;