diff options
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index fb18b61..b05ed21 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -159,6 +159,7 @@ struct fuse_conn_info { struct fuse_session; struct fuse_chan; +struct fuse_pollhandle; /** * Create a FUSE mountpoint @@ -219,6 +220,13 @@ int fuse_daemonize(int foreground); */ int fuse_version(void); +/** + * Destroy poll handle + * + * @param ph the poll handle + */ +void fuse_pollhandle_destroy(struct fuse_pollhandle *ph); + /* ----------------------------------------------------------- * * Signal handling * * ----------------------------------------------------------- */ |