This commit is contained in:
Miklos Szeredi
2005-12-16 11:15:26 +00:00
parent eddbd3967b
commit 57a490e12a
3 changed files with 23 additions and 28 deletions
+2 -2
View File
@@ -7,6 +7,7 @@
*/
#include <fuse.h>
#include <fuse_opt.h>
#ifndef FUSE_VERSION
#define FUSE_VERSION (FUSE_MAJOR_VERSION * 10 + FUSE_MINOR_VERSION)
@@ -19,8 +20,7 @@ typedef int (*fuse_cache_dirfil_t) (fuse_cache_dirh_t h, const char *name,
struct fuse_cache_operations {
struct fuse_operations oper;
int (*cache_getdir) (const char *, fuse_cache_dirh_t, fuse_cache_dirfil_t);
};
struct fuse_operations *cache_init(struct fuse_cache_operations *oper);
int cache_parse_options(int *argcp, char **argv[]);
int cache_parse_options(struct fuse_args *args);