aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2003-12-15 12:11:33 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2003-12-15 12:11:33 +0000
commit2f3d940b2e5fa1c6c0b44372bd3372a20ccc71ab (patch)
treea1eedee59b49babdec8d10389e360eb60de04a8e /include
parent7a19cafc5d0fb8786a61fdadba1a6014a0396e5f (diff)
downloadlibfuse-2f3d940b2e5fa1c6c0b44372bd3372a20ccc71ab.tar.gz
version numbers added
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h6
-rw-r--r--include/linux/fuse.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 59e0ed1..b85f0d8 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -11,6 +11,12 @@
/* This file defines the library interface of FUSE */
+/** Major version of FUSE library interface */
+#define FUSE_MAJOR_VERSION 1
+
+/** Minor version of FUSE library interface */
+#define FUSE_MINOR_VERSION 1
+
/* Now and forever: this interface uses 64 bit off_t */
#define _FILE_OFFSET_BITS 64
diff --git a/include/linux/fuse.h b/include/linux/fuse.h
index 08ad214..9f9609e 100644
--- a/include/linux/fuse.h
+++ b/include/linux/fuse.h
@@ -11,6 +11,9 @@
/** Version number of this interface */
#define FUSE_KERNEL_VERSION 2
+/** Minor version number of this interface */
+#define FUSE_KERNEL_MINOR_VERSION 1
+
/** The inode number of the root indode */
#define FUSE_ROOT_INO 1