diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-21 18:05:06 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-10-21 18:05:06 +0000 |
| commit | 9acb3e5e713d1ab6b2312aa4cdc7946f85f875d0 (patch) | |
| tree | 93189cbe6fc70c2ca1b5e374a2114156d55e371a /src/base/system.h | |
| parent | 142b5ad5143ddcfc9d7fee2563bee753a968f011 (diff) | |
| download | zcatch-9acb3e5e713d1ab6b2312aa4cdc7946f85f875d0.tar.gz zcatch-9acb3e5e713d1ab6b2312aa4cdc7946f85f875d0.zip | |
continued on ban support. cleaned up settings a bit. reworked the datadir autodetection. introduced engine_openfile, engine_getpath and engine_listdir. never use fs_listdir or io_open directly
Diffstat (limited to 'src/base/system.h')
| -rw-r--r-- | src/base/system.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/system.h b/src/base/system.h index 9271be5a..b220810e 100644 --- a/src/base/system.h +++ b/src/base/system.h @@ -799,8 +799,8 @@ void str_hex(char *dst, int dst_size, const void *data, int data_size); Returns: Always returns 0. */ -typedef void (*fs_listdir_callback)(const char *name, int is_dir, void *user); -int fs_listdir(const char *dir, fs_listdir_callback cb, void *user); +typedef void (*FS_LISTDIR_CALLBACK)(const char *name, int is_dir, void *user); +int fs_listdir(const char *dir, FS_LISTDIR_CALLBACK cb, void *user); /* Function: fs_makedir |