16881f68fSopenharmony_ci/* 26881f68fSopenharmony_ci FUSE: Filesystem in Userspace 36881f68fSopenharmony_ci Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> 46881f68fSopenharmony_ci 56881f68fSopenharmony_ci This program can be distributed under the terms of the GNU LGPLv2. 66881f68fSopenharmony_ci See the file COPYING.LIB. 76881f68fSopenharmony_ci*/ 86881f68fSopenharmony_ci 96881f68fSopenharmony_ci#include <sys/types.h> 106881f68fSopenharmony_ci 116881f68fSopenharmony_ciint fuse_mnt_add_mount(const char *progname, const char *fsname, 126881f68fSopenharmony_ci const char *mnt, const char *type, const char *opts); 136881f68fSopenharmony_ciint fuse_mnt_remove_mount(const char *progname, const char *mnt); 146881f68fSopenharmony_ciint fuse_mnt_umount(const char *progname, const char *abs_mnt, 156881f68fSopenharmony_ci const char *rel_mnt, int lazy); 166881f68fSopenharmony_cichar *fuse_mnt_resolve_path(const char *progname, const char *orig); 176881f68fSopenharmony_ciint fuse_mnt_check_fuseblk(void); 186881f68fSopenharmony_ciint fuse_mnt_parse_fuse_fd(const char *mountpoint); 19