aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-10-29 14:57:57 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-10-29 14:57:57 +0000
commitb483c93623dd64eb5f1dcf23f32adb32f616ee0e (patch)
tree63818a8154d98c143d8bbb63d444818dced3caac /include/fuse.h
parent85c74fcdfd9e67d411c3e1734b34effd0d73fa4d (diff)
downloadlibfuse-b483c93623dd64eb5f1dcf23f32adb32f616ee0e.tar.gz
x
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 6b1a151..6837b9e 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -20,8 +20,12 @@ typedef int (*dirfiller_t) (struct fuse_dh *, const char *, int type);
struct fuse_operations {
int (*getattr) (const char *path, struct stat *stbuf);
int (*readlink) (const char *path, char *buf, size_t size);
- int (*mknod) (const char *path, int mode, int rdev);
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);
};
struct fuse *fuse_new();