aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h4
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();