Define FUSE_USE_VERSION in Doxygen. (#608)
authorJunichi Uekawa <dancer@netfort.gr.jp>
Wed, 19 May 2021 08:32:14 +0000 (17:32 +0900)
committerGitHub <noreply@github.com>
Wed, 19 May 2021 08:32:14 +0000 (09:32 +0100)
We currently do not pass anything in PREDEFINED and that means
FUSE_USE_VERSION is undefined.

Add that definition so that Doxygen built-in C pre-processor can use
FUSE_USE_VERSION value to find the correct comment to parse.

doc/Doxyfile
include/fuse_lowlevel.h

index e35412784d0bb9c8e8892b95fbde63fa68503d6c..46ea6cdc970b221faebd0b3126bc2925958f13d7 100644 (file)
@@ -987,7 +987,7 @@ INCLUDE_FILE_PATTERNS  =
 # undefined via #undef or recursively expanded use the := operator
 # instead of the = operator.
 
-PREDEFINED             =
+PREDEFINED             = FUSE_USE_VERSION=35
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
 # this tag can be used to specify a list of macro names that should be expanded.
index 2a7db93b182d01512dd927e772fd202ba86d4fff..d73e9facc844c1718fefa4fe14c0274d45f309b2 100644 (file)
@@ -990,6 +990,11 @@ struct fuse_lowlevel_ops {
        void (*bmap) (fuse_req_t req, fuse_ino_t ino, size_t blocksize,
                      uint64_t idx);
 
+#if FUSE_USE_VERSION < 35
+       void (*ioctl) (fuse_req_t req, fuse_ino_t ino, int cmd,
+                      void *arg, struct fuse_file_info *fi, unsigned flags,
+                      const void *in_buf, size_t in_bufsz, size_t out_bufsz);
+#else
        /**
         * Ioctl
         *
@@ -1018,11 +1023,6 @@ struct fuse_lowlevel_ops {
         * Note : the unsigned long request submitted by the application
         * is truncated to 32 bits.
         */
-#if FUSE_USE_VERSION < 35
-       void (*ioctl) (fuse_req_t req, fuse_ino_t ino, int cmd,
-                      void *arg, struct fuse_file_info *fi, unsigned flags,
-                      const void *in_buf, size_t in_bufsz, size_t out_bufsz);
-#else
        void (*ioctl) (fuse_req_t req, fuse_ino_t ino, unsigned int cmd,
                       void *arg, struct fuse_file_info *fi, unsigned flags,
                       const void *in_buf, size_t in_bufsz, size_t out_bufsz);