37 const DirFunctions __PHYSFS_DirFunctions_DIR = |
37 const DirFunctions __PHYSFS_DirFunctions_DIR = |
38 { |
38 { |
39 DIR_isArchive, /* isArchive() method */ |
39 DIR_isArchive, /* isArchive() method */ |
40 DIR_openArchive, /* openArchive() method */ |
40 DIR_openArchive, /* openArchive() method */ |
41 DIR_enumerate, /* enumerateFiles() method */ |
41 DIR_enumerate, /* enumerateFiles() method */ |
|
42 DIR_exists, /* exists() method */ |
42 DIR_isDirectory, /* isDirectory() method */ |
43 DIR_isDirectory, /* isDirectory() method */ |
43 DIR_isSymLink, /* isSymLink() method */ |
44 DIR_isSymLink, /* isSymLink() method */ |
44 DIR_isOpenable, /* isOpenable() method */ |
|
45 DIR_openRead, /* openRead() method */ |
45 DIR_openRead, /* openRead() method */ |
46 DIR_openWrite, /* openWrite() method */ |
46 DIR_openWrite, /* openWrite() method */ |
47 DIR_dirClose, /* close() method */ |
47 DIR_openAppend, /* openAppend() method */ |
|
48 DIR_remove, /* remove() method */ |
|
49 DIR_mkdir, /* mkdir() method */ |
|
50 DIR_close, /* close() method */ |
48 }; |
51 }; |
49 |
52 |
50 |
53 |
51 /* This doesn't get listed, since it's technically not an archive... */ |
54 /* This doesn't get listed, since it's technically not an archive... */ |
52 #if 0 |
55 #if 0 |