Added more fields to the ArchiveInfo struct: author and url.

This commit is contained in:
Ryan C. Gordon 2001-07-09 23:33:37 +00:00
parent eea743579a
commit 78f47916c0
4 changed files with 11 additions and 3 deletions

View File

@ -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

View File

@ -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 ... */

View File

@ -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 ... */

View File

@ -151,6 +151,8 @@ typedef struct __PHYSFS_ARCHIVEINFO__
{
const char *extension;
const char *description;
const char *author;
const char *url;
} PHYSFS_ArchiveInfo;