aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-14 23:00:27 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-14 23:00:27 +0000
commita148242fb80fa2127fdaf41de63e2d81dc8006ef (patch)
tree1eda064d419d5b9ef6d99819f7d272a073aa068f /include/fuse.h
parent45c5db5475d2aa0a73675f3a5129523f82adfc18 (diff)
downloadlibfuse-a148242fb80fa2127fdaf41de63e2d81dc8006ef.tar.gz
cleanup
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h
index ca96084..ca3797f 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -34,6 +34,12 @@ extern "C" {
/** Handle for a FUSE filesystem */
struct fuse;
+/** Structure containing a raw command */
+struct fuse_cmd;
+
+/** The lowlevel FUSE session */
+struct fuse_session;
+
/** Function to add an entry in a readdir() operation
*
* @param buf the buffer passed to the readdir() operation
@@ -504,8 +510,8 @@ int fuse_exited(struct fuse *f);
/** Set function which can be used to get the current context */
void fuse_set_getcontext_func(struct fuse_context *(*func)(void));
-/** Returns the lowlevel FUSE object */
-struct fuse_ll *fuse_get_lowlevel(struct fuse *f);
+/** Returns the lowlevel FUSE session */
+struct fuse_session *fuse_get_session(struct fuse *f);
/* ----------------------------------------------------------- *
* Compatibility stuff *