aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-15 13:19:07 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-15 13:19:07 +0000
commit178451d6f063c1054e7960fd628692d6d394f4cd (patch)
tree6f16a8dd77a0854dfdbe87fabd4c50a0c1f8f672 /lib/fuse_i.h
parenta148242fb80fa2127fdaf41de63e2d81dc8006ef (diff)
downloadlibfuse-178451d6f063c1054e7960fd628692d6d394f4cd.tar.gz
fix
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
new file mode 100644
index 0000000..281ddc4
--- /dev/null
+++ b/lib/fuse_i.h
@@ -0,0 +1,24 @@
+/*
+ FUSE: Filesystem in Userspace
+ Copyright (C) 2001-2005 Miklos Szeredi <miklos@szeredi.hu>
+
+ This program can be distributed under the terms of the GNU LGPL.
+ See the file COPYING.LIB
+*/
+
+#include "fuse.h"
+
+struct fuse_session;
+struct fuse_chan;
+
+struct fuse_cmd {
+ char *buf;
+ size_t buflen;
+ struct fuse_chan *ch;
+};
+
+struct fuse_session *fuse_get_session(struct fuse *f);
+
+struct fuse *fuse_new_common(int fd, const char *opts,
+ const struct fuse_operations *op,
+ size_t op_size, int compat);