nw::lyt::ARCOpen Function

Syntax

bool ARCOpen(
     ARCHandle * handle,
     const wchar_t * fileName,
     ARCFileInfo * af
);
NW_INLINE bool ARCOpen(
     ARCHandle * handle,
     ARCDirEntry * dirent,
     ARCFileInfo * af
);

List of Overloaded Member Functions

ARCOpen ( ARCHandle *, const wchar_t *, ARCFileInfo * ) Opens files in an archive
ARCOpen ( ARCHandle *, ARCDirEntry *, ARCFileInfo * ) Opens files in an archive

Description of ARCOpen ( ARCHandle *, const wchar_t *, ARCFileInfo * )

Opens a file within the content file and initializes the specified ARCFileInfo structure.

If a relative path is specified in fileName, it is taken as a relative path from the current directory of the ARCHandle structure.

The ARCHandle structure of the archive file must be initialized beforehand using ARCInitHandle.

Description of ARCOpen ( ARCHandle *, ARCDirEntry *, ARCFileInfo * )

Opens a file inside the archive represented by the directory entry structure and initializes the specified ARCFileInfo structure.

The entry indicated by the directory entry structure must represent a file.

The directory structure must be initialized beforehand using ARCReadDir().

The ARCHandle structure of the archive file must be initialized beforehand using ARCInitHandle.


CONFIDENTIAL