aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 8803b68..a614fb0 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -836,6 +836,18 @@ struct fuse_bufvec {
struct fuse_buf buf[1];
};
+/**
+ * libfuse version a file system was compiled with. Should be filled in from
+ * defines in 'libfuse_config.h'
+ */
+struct libfuse_version
+{
+ int major;
+ int minor;
+ int hotfix;
+ int padding;
+};
+
/* Initialize bufvec with a single buffer of given size */
#define FUSE_BUFVEC_INIT(size__) \
((struct fuse_bufvec) { \