Get a list of supported archive types.
Null-terminated array of READ ONLY structures.
The returned value is an array of pointers to PHYSFS_ArchiveInfo structures, with a NULL entry to signify the end of the list:
PHYSFS_ArchiveInfo **i; for (i = PHYSFS_supportedArchiveTypes(); *i != NULL; i++) { printf("Supported archive: [%s], which is [%s].\n", i->extension, i->description); }
The return values are pointers to static internal memory, and should be considered READ ONLY, and never freed.
Fs Class | Tao.PhysFs Namespace