diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2012-07-19 19:02:42 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2012-07-19 19:02:42 +0200 |
commit | cc1a1f4eddc4613a7549533e518e3c5e342db6e4 (patch) | |
tree | 0890ddd43c36166a07831cdd35309f6bb20d7fc7 /include/fuse_common_compat.h | |
parent | 966d97b1f816a6092e90f3249fbddf861217b636 (diff) | |
download | libfuse-cc1a1f4eddc4613a7549533e518e3c5e342db6e4.tar.gz |
Remove compat functions
Diffstat (limited to 'include/fuse_common_compat.h')
-rw-r--r-- | include/fuse_common_compat.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/include/fuse_common_compat.h b/include/fuse_common_compat.h deleted file mode 100644 index 34440ff..0000000 --- a/include/fuse_common_compat.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - FUSE: Filesystem in Userspace - Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> - - This program can be distributed under the terms of the GNU LGPLv2. - See the file COPYING.LIB. -*/ - -/* these definitions provide source compatibility to prior versions. - Do not include this file directly! */ - -struct fuse_file_info_compat { - int flags; - unsigned long fh; - int writepage; - unsigned int direct_io : 1; - unsigned int keep_cache : 1; -}; - -int fuse_mount_compat25(const char *mountpoint, struct fuse_args *args); - -int fuse_mount_compat22(const char *mountpoint, const char *opts); - -int fuse_mount_compat1(const char *mountpoint, const char *args[]); - -void fuse_unmount_compat22(const char *mountpoint); |