diff options
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 * * ----------------------------------------------------------- */ |