diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 13:31:36 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 13:31:36 +0000 |
commit | e2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2 (patch) | |
tree | acab77c357b36a6703450f0802423a0ca4b3ae01 /include/fuse.h | |
parent | bd10a7b16f10c1a5f61a4531c8631048e00fa230 (diff) | |
download | libfuse-e2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2.tar.gz |
cleanup
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h index 07438b1..6c6cf09 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -497,11 +497,14 @@ int fuse_loop_mt_proc(struct fuse *f, fuse_processor_t proc, void *data); /** Return the exited flag, which indicates if fuse_exit() has been called */ -int fuse_exited(struct fuse* f); +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); + /* ----------------------------------------------------------- * * Compatibility stuff * * ----------------------------------------------------------- */ |