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.

28 lines
737 B

5 years ago
  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. #include "fuse_opt.h"
  10. struct fuse_file_info_compat {
  11. int flags;
  12. unsigned long fh;
  13. int writepage;
  14. unsigned int direct_io : 1;
  15. unsigned int keep_cache : 1;
  16. };
  17. int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args);
  18. int fuse_mount_compat22(const char *mountpoint, const char *opts);
  19. int fuse_mount_compat1(const char *mountpoint, const char *args[]);
  20. void fuse_unmount_compat22(const char *mountpoint);