summaryrefslogtreecommitdiffstats
path: root/src/version.h.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-23 09:41:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-23 09:41:28 +0000
commit76ffd5ce84e4adb412833c8186fc6b26b656947f (patch)
tree11da7c12c05e9d2a85ec40022d43a970184bb867 /src/version.h.in
parentInitial commit. (diff)
downloadlibyang3-76ffd5ce84e4adb412833c8186fc6b26b656947f.tar.xz
libyang3-76ffd5ce84e4adb412833c8186fc6b26b656947f.zip
Adding upstream version 3.1.0.upstream/3.1.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/version.h.in')
-rw-r--r--src/version.h.in54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/version.h.in b/src/version.h.in
new file mode 100644
index 0000000..1ed86c1
--- /dev/null
+++ b/src/version.h.in
@@ -0,0 +1,54 @@
+/**
+ * @file version.h
+ * @author Radek Krejci <rkrejci@cesnet.cz>
+ * @author Michal Vasko <mvasko@cesnet.cz>
+ * @brief libyang version definitions
+ *
+ * Copyright (c) 2020 - 2024 CESNET, z.s.p.o.
+ *
+ * This source code is licensed under BSD 3-Clause License (the "License").
+ * You may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://opensource.org/licenses/BSD-3-Clause
+ */
+
+#ifndef LY_VERSION_H_
+#define LY_VERSION_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define LY_VERSION_MAJOR @LIBYANG_MAJOR_SOVERSION@ /**< libyang major version number */
+#define LY_VERSION_MINOR @LIBYANG_MINOR_SOVERSION@ /**< libyang minor version number */
+#define LY_VERSION_MICRO @LIBYANG_MICRO_SOVERSION@ /**< libyang micro version number */
+#define LY_VERSION "@LIBYANG_SOVERSION_FULL@" /**< libyang version string */
+
+#define LY_PROJ_VERSION_MAJOR @LIBYANG_MAJOR_VERSION@ /**< project major version number */
+#define LY_PROJ_VERSION_MINOR @LIBYANG_MINOR_VERSION@ /**< project minor version number */
+#define LY_PROJ_VERSION_MICRO @LIBYANG_MICRO_VERSION@ /**< project micro version number */
+#define LY_PROJ_VERSION "@LIBYANG_VERSION@" /**< project version string */
+
+struct ly_version {
+ uint32_t major; /**< Major version number */
+ uint32_t minor; /**< Minor version number */
+ uint32_t micro; /**< Micro version number */
+ const char *str; /**< Version string */
+};
+
+/**
+ * @brief libyang SO version.
+ */
+LIBYANG_API_DECL extern struct ly_version ly_version_so;
+
+/**
+ * @brief libyang project version.
+ */
+LIBYANG_API_DECL extern struct ly_version ly_version_proj;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* LY_VERSION_H_ */