Updated to latest driver spec.
This commit is contained in:
parent
217332022a
commit
7be11ab27d
7
dir.c
7
dir.c
|
@ -39,12 +39,15 @@ const DirFunctions __PHYSFS_DirFunctions_DIR =
|
||||||
DIR_isArchive, /* isArchive() method */
|
DIR_isArchive, /* isArchive() method */
|
||||||
DIR_openArchive, /* openArchive() method */
|
DIR_openArchive, /* openArchive() method */
|
||||||
DIR_enumerate, /* enumerateFiles() method */
|
DIR_enumerate, /* enumerateFiles() method */
|
||||||
|
DIR_exists, /* exists() method */
|
||||||
DIR_isDirectory, /* isDirectory() method */
|
DIR_isDirectory, /* isDirectory() method */
|
||||||
DIR_isSymLink, /* isSymLink() method */
|
DIR_isSymLink, /* isSymLink() method */
|
||||||
DIR_isOpenable, /* isOpenable() method */
|
|
||||||
DIR_openRead, /* openRead() method */
|
DIR_openRead, /* openRead() method */
|
||||||
DIR_openWrite, /* openWrite() method */
|
DIR_openWrite, /* openWrite() method */
|
||||||
DIR_dirClose, /* close() method */
|
DIR_openAppend, /* openAppend() method */
|
||||||
|
DIR_remove, /* remove() method */
|
||||||
|
DIR_mkdir, /* mkdir() method */
|
||||||
|
DIR_close, /* close() method */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
7
zip.c
7
zip.c
|
@ -33,12 +33,15 @@ const DirFunctions __PHYSFS_DirFunctions_ZIP =
|
||||||
ZIP_isArchive, /* isArchive() method */
|
ZIP_isArchive, /* isArchive() method */
|
||||||
ZIP_openArchive, /* openArchive() method */
|
ZIP_openArchive, /* openArchive() method */
|
||||||
ZIP_enumerate, /* enumerateFiles() method */
|
ZIP_enumerate, /* enumerateFiles() method */
|
||||||
|
ZIP_exists, /* exists() method */
|
||||||
ZIP_isDirectory, /* isDirectory() method */
|
ZIP_isDirectory, /* isDirectory() method */
|
||||||
ZIP_isSymLink, /* isSymLink() method */
|
ZIP_isSymLink, /* isSymLink() method */
|
||||||
ZIP_isOpenable, /* isOpenable() method */
|
|
||||||
ZIP_openRead, /* openRead() method */
|
ZIP_openRead, /* openRead() method */
|
||||||
NULL, /* openWrite() method */
|
NULL, /* openWrite() method */
|
||||||
ZIP_dirClose, /* close() method */
|
NULL, /* openAppend() method */
|
||||||
|
NULL, /* remove() method */
|
||||||
|
NULL, /* mkdir() method */
|
||||||
|
ZIP_close, /* close() method */
|
||||||
};
|
};
|
||||||
|
|
||||||
const __PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
|
const __PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
|
||||||
|
|
Loading…
Reference in New Issue