Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-11-14 21:39:06 +0300
committerRobert Adam <dev@robert-adam.de>2021-11-18 21:25:28 +0300
commit3d142ac23800347b1f77b97e9d493cd2e00311e6 (patch)
treeaeef7941aaa0a186e57709c24aac633e8508de53
parent60888caadcdac6aabee3f52ee0a4404ccc4dca97 (diff)
REFAC(plugins): Add plugin function version specifier
-rw-r--r--plugins/MumblePlugin_v_1_0_x.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/MumblePlugin_v_1_0_x.h b/plugins/MumblePlugin_v_1_0_x.h
index afb2eee3f..fb182a5f4 100644
--- a/plugins/MumblePlugin_v_1_0_x.h
+++ b/plugins/MumblePlugin_v_1_0_x.h
@@ -25,6 +25,17 @@
#endif
+// Plugin functions version
+#define MUMBLE_PLUGIN_FUNCTIONS_MAJOR_MACRO 1
+#define MUMBLE_PLUGIN_FUNCTIONS_MINOR_MACRO 0
+#define MUMBLE_PLUGIN_FUNCTIONS_PATCH_MACRO 1
+
+const int32_t MUMBLE_PLUGIN_FUNCTIONS_MAJOR = MUMBLE_PLUGIN_FUNCTIONS_MAJOR_MACRO;
+const int32_t MUMBLE_PLUGIN_FUNCTIONS_MINOR = MUMBLE_PLUGIN_FUNCTIONS_MINOR_MACRO;
+const int32_t MUMBLE_PLUGIN_FUNCTIONS_PATCH = MUMBLE_PLUGIN_FUNCTIONS_PATCH_MACRO;
+const mumble_version_t MUMBLE_PLUGIN_FUNCTIONS_VERSION = { MUMBLE_PLUGIN_FUNCTIONS_MAJOR, MUMBLE_PLUGIN_FUNCTIONS_MINOR,
+ MUMBLE_PLUGIN_FUNCTIONS_PATCH };
+
#ifdef __cplusplus
extern "C" {
#endif