blob: 34440ff7165490ab6836bf6746d3e5c469605f96 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB.
7*/
8
9/* these definitions provide source compatibility to prior versions.
10 Do not include this file directly! */
11
12struct fuse_file_info_compat {
13 int flags;
14 unsigned long fh;
15 int writepage;
16 unsigned int direct_io : 1;
17 unsigned int keep_cache : 1;
18};
19
20int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args);
21
22int fuse_mount_compat22(const char *mountpoint, const char *opts);
23
24int fuse_mount_compat1(const char *mountpoint, const char *args[]);
25
26void fuse_unmount_compat22(const char *mountpoint);