Information on various PhysicsFS-supported archives.
Defined in <physfs.h>
typedef struct PHYSFS_ArchiveInfo
{
const char *extension; /**< Archive file extension: "ZIP", for example. */
const char *description; /**< Human-readable archive description. */
const char *author; /**< Person who did support for this archive. */
const char *url; /**< URL related to this archive */
int supportsSymlinks; /**< non-zero if archive offers symbolic links. */
} PHYSFS_ArchiveInfo;This structure gives you details on what sort of archives are supported by this implementation of PhysicsFS. Archives tend to be things like ZIP files and such.
WARNING: Not all binaries are created equal! PhysicsFS can be built with or without support for various archives. You can check with PHYSFS_supportedArchiveTypes() to see if your archive type is supported.
This struct is available since PhysicsFS 1.0.0.