diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse.h | 6 | ||||
-rw-r--r-- | include/linux/fuse.h | 3 |
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 |