Added more fields to the ArchiveInfo struct: author and url.
This commit is contained in:
parent
eea743579a
commit
78f47916c0
|
@ -328,7 +328,9 @@ const DirFunctions __PHYSFS_DirFunctions_DIR =
|
|||
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_DIR =
|
||||
{
|
||||
"DIR",
|
||||
"non-archive directory I/O"
|
||||
"non-archive directory I/O",
|
||||
"Ryan C. Gordon",
|
||||
"http://www.icculus.org/",
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
|
@ -376,7 +376,9 @@ const DirFunctions __PHYSFS_DirFunctions_GRP =
|
|||
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_GRP =
|
||||
{
|
||||
"GRP",
|
||||
"Build engine Groupfile format"
|
||||
"Build engine Groupfile format",
|
||||
"Ryan C. Gordon",
|
||||
"http://www.icculus.org/",
|
||||
};
|
||||
|
||||
/* end of grp.c ... */
|
||||
|
|
|
@ -123,7 +123,9 @@ const DirFunctions __PHYSFS_DirFunctions_ZIP =
|
|||
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
|
||||
{
|
||||
"ZIP",
|
||||
"PkZip/WinZip/Info-Zip compatible"
|
||||
"PkZip/WinZip/Info-Zip compatible",
|
||||
"Ryan C. Gordon",
|
||||
"http://www.icculus.org/",
|
||||
};
|
||||
|
||||
/* end of zip.c ... */
|
||||
|
|
Loading…
Reference in New Issue