equal
deleted
inserted
replaced
67 #if (defined PHYSFS_SUPPORTS_MVL) |
67 #if (defined PHYSFS_SUPPORTS_MVL) |
68 extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_MVL; |
68 extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_MVL; |
69 extern const DirFunctions __PHYSFS_DirFunctions_MVL; |
69 extern const DirFunctions __PHYSFS_DirFunctions_MVL; |
70 #endif |
70 #endif |
71 |
71 |
72 #if (defined PHYSFS_SUPPORTS_QPAK) |
|
73 extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_QPAK; |
|
74 extern const DirFunctions __PHYSFS_DirFunctions_QPAK; |
|
75 #endif |
|
76 |
|
77 extern const DirFunctions __PHYSFS_DirFunctions_DIR; |
72 extern const DirFunctions __PHYSFS_DirFunctions_DIR; |
78 |
73 |
79 |
74 |
80 static const PHYSFS_ArchiveInfo *supported_types[] = |
75 static const PHYSFS_ArchiveInfo *supported_types[] = |
81 { |
76 { |
93 |
88 |
94 #if (defined PHYSFS_SUPPORTS_MVL) |
89 #if (defined PHYSFS_SUPPORTS_MVL) |
95 &__PHYSFS_ArchiveInfo_MVL, |
90 &__PHYSFS_ArchiveInfo_MVL, |
96 #endif |
91 #endif |
97 |
92 |
98 #if (defined PHYSFS_SUPPORTS_QPAK) |
|
99 &__PHYSFS_ArchiveInfo_QPAK, |
|
100 #endif |
|
101 |
|
102 NULL |
93 NULL |
103 }; |
94 }; |
104 |
95 |
105 static const DirFunctions *dirFunctions[] = |
96 static const DirFunctions *dirFunctions[] = |
106 { |
97 { |
116 &__PHYSFS_DirFunctions_HOG, |
107 &__PHYSFS_DirFunctions_HOG, |
117 #endif |
108 #endif |
118 |
109 |
119 #if (defined PHYSFS_SUPPORTS_MVL) |
110 #if (defined PHYSFS_SUPPORTS_MVL) |
120 &__PHYSFS_DirFunctions_MVL, |
111 &__PHYSFS_DirFunctions_MVL, |
121 #endif |
|
122 |
|
123 #if (defined PHYSFS_SUPPORTS_QPAK) |
|
124 &__PHYSFS_DirFunctions_QPAK, |
|
125 #endif |
112 #endif |
126 |
113 |
127 &__PHYSFS_DirFunctions_DIR, |
114 &__PHYSFS_DirFunctions_DIR, |
128 NULL |
115 NULL |
129 }; |
116 }; |