summaryrefslogtreecommitdiffhomepage
path: root/src/rust/unit-wasm-sys/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rust/unit-wasm-sys/macros.rs')
-rw-r--r--src/rust/unit-wasm-sys/macros.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/rust/unit-wasm-sys/macros.rs b/src/rust/unit-wasm-sys/macros.rs
new file mode 100644
index 0000000..d7fde22
--- /dev/null
+++ b/src/rust/unit-wasm-sys/macros.rs
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: Apache-2.0 */
+
+/*
+ * Copyright (C) Andrew Clayton
+ * Copyright (C) F5, Inc.
+ */
+
+pub const LUW_VERSION_MAJOR: i32 = 0;
+pub const LUW_VERSION_MINOR: i32 = 1;
+pub const LUW_VERSION_PATCH: i32 = 0;
+
+pub const LUW_VERSION_NUMBER: i32 =
+ (LUW_VERSION_MAJOR << 24) |
+ (LUW_VERSION_MINOR << 16) |
+ (LUW_VERSION_PATCH << 8);