FSResult FS_ARCHIVE_PROC_FUNC(
FSFile *p_file,
FSCommandType command /* = FS_COMMAND_CLOSEFILE */);
Operating specifications for the archive command FS_COMMAND_CLOSEFILE are shown below:
arg.closefile that is stored in p_file.nitro/fs/file.h as shown below:
typedef struct
{
u32 reserved;
} FSCloseFileInfo;
| Arguments | Content |
|---|---|
reserved |
Not used |
p_file is a handle that always holds file information in prop.file.FS_RESULT_SUCCESS is returned by the command, p_file will no longer be a handle that holds file information, and from that point the FS_IsFile function will return FALSE.FS_InitFile function is called.FS_CloseFileFSArchive, FS_ARCHIVE_PROC_FUNC, FS_COMMAND_*, FS_SetArchiveProc, FS_CloseFile, FS_InitFile, FS_IsFile
07/12/2004 Initial Version