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.
9 /* these definitions provide source compatibility to prior versions.
10 Do not include this file directly! */
12 struct fuse_file_info_compat
{
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
);