ARCFastOpen

C Specification

#include <revolution/arc.h>
BOOL ARCFastOpen(ARCHandle* handle, s32 entrynum, ARCFileInfo* af);

Description

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.

Arguments

handle Pointer to the ARCHandle structure for the file.
entrynum Entry number for the file.
af ARCFileInfo structure to initialize.

Return Values

Returns TRUE if successful, FALSE if unsuccessful.

See Also

ARCOpen(), ARCInitHandle(), ARCConvertPathToEntrynum()

Revision History

05/15/2006 Initial version.