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.

26 lines
714 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. /* these definitions provide source compatibility to prior versions.
  8. Do not include this file directly! */
  9. struct fuse_file_info_compat {
  10. int flags;
  11. unsigned long fh;
  12. int writepage;
  13. unsigned int direct_io : 1;
  14. unsigned int keep_cache : 1;
  15. };
  16. int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args);
  17. int fuse_mount_compat22(const char *mountpoint, const char *opts);
  18. int fuse_mount_compat1(const char *mountpoint, const char *args[]);
  19. void fuse_unmount_compat22(const char *mountpoint);