#include <revolution/arc.h>
BOOL ARCFastOpen(ARCHandle* handle, s32 entrynum, ARCFileInfo* af);
ARCFastOpen() opens the file in the archive and initializes the specified ARCFileInfo structure. This differs from ARCOpen() in that you specify the entry number for the file instead of specifying its file name. You need to get the entrynum for the file by calling ARCConvertPathToEntrynum() in advance.
handle |
Pointer to the ARCHandle structure for the file. |
entrynum |
Entry number for the file. |
af |
ARCFileInfo structure to initialize. |
Returns TRUE if successful, FALSE if unsuccessful.
ARCOpen(), ARCInitHandle(), ARCConvertPathToEntrynum()
05/15/2006 Initial version.