This function frees the memory allocated by fpOpenFile() and closes the file.
int (pascal *fpCloseFile) (void *pFile);
pFile
|
The identifier of the file. This is a file handle returned from fpOpenFile() . |
If the file is closed, the return value is KVERR_Success
.
If the file is not closed, the return value is an error code.
extractInterface->fpCloseFile(pFile); pFile = NULL;
|