--- a/misc/libphysfs/archiver_mvl.c Mon Apr 10 09:05:16 2017 -0400
+++ b/misc/libphysfs/archiver_mvl.c Mon Apr 10 12:06:43 2017 -0400
@@ -80,24 +80,26 @@
const PHYSFS_Archiver __PHYSFS_Archiver_MVL =
{
+ CURRENT_PHYSFS_ARCHIVER_API_VERSION,
{
"MVL",
"Descent II Movielib format",
"Bradley Bell <btb@icculus.org>",
- "http://icculus.org/physfs/",
+ "https://icculus.org/physfs/",
+ 0, /* supportsSymlinks */
},
- MVL_openArchive, /* openArchive() method */
- UNPK_enumerateFiles, /* enumerateFiles() method */
- UNPK_openRead, /* openRead() method */
- UNPK_openWrite, /* openWrite() method */
- UNPK_openAppend, /* openAppend() method */
- UNPK_remove, /* remove() method */
- UNPK_mkdir, /* mkdir() method */
- UNPK_closeArchive, /* closeArchive() method */
- UNPK_stat /* stat() method */
+ MVL_openArchive,
+ UNPK_enumerateFiles,
+ UNPK_openRead,
+ UNPK_openWrite,
+ UNPK_openAppend,
+ UNPK_remove,
+ UNPK_mkdir,
+ UNPK_stat,
+ UNPK_closeArchive
};
#endif /* defined PHYSFS_SUPPORTS_MVL */
-/* end of mvl.c ... */
+/* end of archiver_mvl.c ... */