diff options
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); |