ISO9660 archiver, compliments of Christoph Nelles.
This commit is contained in:
parent
c369e78296
commit
0fa35af2b9
|
@ -148,6 +148,7 @@ SET(PHYSFS_SRCS
|
||||||
src/archiver_qpak.c
|
src/archiver_qpak.c
|
||||||
src/archiver_wad.c
|
src/archiver_wad.c
|
||||||
src/archiver_zip.c
|
src/archiver_zip.c
|
||||||
|
src/archiver_iso9660.c
|
||||||
${PHYSFS_BEOS_SRCS}
|
${PHYSFS_BEOS_SRCS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -109,6 +109,9 @@ PHYSFS_stat() API:
|
||||||
Christoph Nelles
|
Christoph Nelles
|
||||||
Indy Sams
|
Indy Sams
|
||||||
|
|
||||||
|
ISO9660 archiver:
|
||||||
|
Christoph Nelles
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
Steven Fuller
|
Steven Fuller
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -66,6 +66,8 @@ extern const PHYSFS_Archiver __PHYSFS_Archiver_MVL;
|
||||||
extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_WAD;
|
extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_WAD;
|
||||||
extern const PHYSFS_Archiver __PHYSFS_Archiver_WAD;
|
extern const PHYSFS_Archiver __PHYSFS_Archiver_WAD;
|
||||||
extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
|
extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
|
||||||
|
extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ISO9660;
|
||||||
|
extern const PHYSFS_Archiver __PHYSFS_Archiver_ISO9660;
|
||||||
|
|
||||||
|
|
||||||
static const PHYSFS_ArchiveInfo *supported_types[] =
|
static const PHYSFS_ArchiveInfo *supported_types[] =
|
||||||
|
@ -91,6 +93,7 @@ static const PHYSFS_ArchiveInfo *supported_types[] =
|
||||||
#if (defined PHYSFS_SUPPORTS_WAD)
|
#if (defined PHYSFS_SUPPORTS_WAD)
|
||||||
&__PHYSFS_ArchiveInfo_WAD,
|
&__PHYSFS_ArchiveInfo_WAD,
|
||||||
#endif
|
#endif
|
||||||
|
&__PHYSFS_ArchiveInfo_ISO9660,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -118,6 +121,7 @@ static const PHYSFS_Archiver *archivers[] =
|
||||||
#if (defined PHYSFS_SUPPORTS_WAD)
|
#if (defined PHYSFS_SUPPORTS_WAD)
|
||||||
&__PHYSFS_Archiver_WAD,
|
&__PHYSFS_Archiver_WAD,
|
||||||
#endif
|
#endif
|
||||||
|
&__PHYSFS_Archiver_ISO9660,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue