misc/libphysfs/archiver_mvl.c
changeset 12218 bb5522e88ab2
parent 8524 a65e9bcf0a03
equal deleted inserted replaced
12217:ea891871f481 12218:bb5522e88ab2
    78 } /* MVL_openArchive */
    78 } /* MVL_openArchive */
    79 
    79 
    80 
    80 
    81 const PHYSFS_Archiver __PHYSFS_Archiver_MVL =
    81 const PHYSFS_Archiver __PHYSFS_Archiver_MVL =
    82 {
    82 {
       
    83     CURRENT_PHYSFS_ARCHIVER_API_VERSION,
    83     {
    84     {
    84         "MVL",
    85         "MVL",
    85         "Descent II Movielib format",
    86         "Descent II Movielib format",
    86         "Bradley Bell <btb@icculus.org>",
    87         "Bradley Bell <btb@icculus.org>",
    87         "http://icculus.org/physfs/",
    88         "https://icculus.org/physfs/",
       
    89         0,  /* supportsSymlinks */
    88     },
    90     },
    89     MVL_openArchive,        /* openArchive() method    */
    91     MVL_openArchive,
    90     UNPK_enumerateFiles,     /* enumerateFiles() method */
    92     UNPK_enumerateFiles,
    91     UNPK_openRead,           /* openRead() method       */
    93     UNPK_openRead,
    92     UNPK_openWrite,          /* openWrite() method      */
    94     UNPK_openWrite,
    93     UNPK_openAppend,         /* openAppend() method     */
    95     UNPK_openAppend,
    94     UNPK_remove,             /* remove() method         */
    96     UNPK_remove,
    95     UNPK_mkdir,              /* mkdir() method          */
    97     UNPK_mkdir,
    96     UNPK_closeArchive,       /* closeArchive() method   */
    98     UNPK_stat,
    97     UNPK_stat                /* stat() method           */
    99     UNPK_closeArchive
    98 };
   100 };
    99 
   101 
   100 #endif  /* defined PHYSFS_SUPPORTS_MVL */
   102 #endif  /* defined PHYSFS_SUPPORTS_MVL */
   101 
   103 
   102 /* end of mvl.c ... */
   104 /* end of archiver_mvl.c ... */
   103 
   105