You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
737 B

  1. /*
  2. FUSE: Filesystem in Userspace
  3. Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
  4. This program can be distributed under the terms of the GNU LGPLv2.
  5. See the file COPYING.LIB.
  6. */
  7. #pragma once
  8. #include <sys/types.h>
  9. int fuse_mnt_add_mount(const char *progname, const char *fsname,
  10. const char *mnt, const char *type, const char *opts);
  11. int fuse_mnt_remove_mount(const char *progname, const char *mnt);
  12. int fuse_mnt_umount(const char *progname, const char *abs_mnt,
  13. const char *rel_mnt, int lazy);
  14. char *fuse_mnt_resolve_path(const char *progname, const char *orig);
  15. int fuse_mnt_check_empty(const char *progname, const char *mnt,
  16. mode_t rootmode, off_t rootsize);
  17. int fuse_mnt_check_fuseblk(void);