From b483c93623dd64eb5f1dcf23f32adb32f616ee0e Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 29 Oct 2001 14:57:57 +0000 Subject: x --- include/fuse.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/fuse.h') 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(); -- cgit v1.2.3