Released 2.9.2
[fuse.git] / include / fuse_common_compat.h
blob34440ff7165490ab6836bf6746d3e5c469605f96
1 /*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB.
7 */
9 /* these definitions provide source compatibility to prior versions.
10 Do not include this file directly! */
12 struct 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;
20 int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args);
22 int fuse_mount_compat22(const char *mountpoint, const char *opts);
24 int fuse_mount_compat1(const char *mountpoint, const char *args[]);
26 void fuse_unmount_compat22(const char *mountpoint);