diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-30 15:06:52 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-30 15:06:52 +0000 |
commit | 19dff1ba9dfe6f474d22224267a7407c949d6803 (patch) | |
tree | 5e150c70866bc04869930c402bf80b6a99540489 /include/fuse.h | |
parent | b483c93623dd64eb5f1dcf23f32adb32f616ee0e (diff) | |
download | libfuse-19dff1ba9dfe6f474d22224267a7407c949d6803.tar.gz |
x
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h index 6837b9e..e18f606 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -23,9 +23,11 @@ struct fuse_operations { int (*getdir) (const char *path, struct fuse_dh *h, dirfiller_t filler); int (*mknod) (const char *path, int mode, int rdev); int (*mkdir) (const char *path, int mode); - int (*symlink) (const char *from, const char *to); int (*unlink) (const char *path); int (*rmdir) (const char *path); + int (*rename) (const char *from, const char *to); + int (*symlink) (const char *from, const char *to); + int (*link) (const char *from, const char *to); }; struct fuse *fuse_new(); |