Skip to content

Commit

Permalink
Updated to latest driver spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 7, 2001
1 parent 2173320 commit 7be11ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions dir.c
Expand Up @@ -39,12 +39,15 @@ const DirFunctions __PHYSFS_DirFunctions_DIR =
DIR_isArchive, /* isArchive() method */
DIR_openArchive, /* openArchive() method */
DIR_enumerate, /* enumerateFiles() method */
DIR_exists, /* exists() method */
DIR_isDirectory, /* isDirectory() method */
DIR_isSymLink, /* isSymLink() method */
DIR_isOpenable, /* isOpenable() method */
DIR_openRead, /* openRead() 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 */
};


Expand Down
7 changes: 5 additions & 2 deletions zip.c
Expand Up @@ -33,12 +33,15 @@ const DirFunctions __PHYSFS_DirFunctions_ZIP =
ZIP_isArchive, /* isArchive() method */
ZIP_openArchive, /* openArchive() method */
ZIP_enumerate, /* enumerateFiles() method */
ZIP_exists, /* exists() method */
ZIP_isDirectory, /* isDirectory() method */
ZIP_isSymLink, /* isSymLink() method */
ZIP_isOpenable, /* isOpenable() method */
ZIP_openRead, /* openRead() 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 =
Expand Down

0 comments on commit 7be11ab

Please sign in to comment.