diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-09-22 19:30:17 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-09-22 19:30:17 +0000 |
commit | eafdf42a69455f49fc8f935270fec7550bbc4e7c (patch) | |
tree | 01903a422a219c091b4a9976721c3b6c0d1f009c /include/fuse_common_compat.h | |
parent | 026e0f46a9ce978b91d0ebcdd0838a3e6687d60f (diff) | |
download | libfuse-eafdf42a69455f49fc8f935270fec7550bbc4e7c.tar.gz |
fix compat bugs in lowlevel interface
Diffstat (limited to 'include/fuse_common_compat.h')
-rw-r--r-- | include/fuse_common_compat.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fuse_common_compat.h b/include/fuse_common_compat.h index 6b6bf32..60ca944 100644 --- a/include/fuse_common_compat.h +++ b/include/fuse_common_compat.h @@ -9,6 +9,14 @@ /* 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); |