Commit 4575640c authored by Lucas Russo's avatar Lucas Russo

include/bpm_server_classes.h: add MAJOR,MINOR,PATCH strings

parent b9d6d1fa
......@@ -36,6 +36,10 @@
#define BPM_VERSION_MINOR 1
#define BPM_VERSION_PATCH 0
#define BPM_VERSION_MAJOR_STR STRINGIFY(BPM_VERSION_MAJOR)
#define BPM_VERSION_MINOR_STR STRINGIFY(BPM_VERSION_MINOR)
#define BPM_VERSION_PATCH_STR STRINGIFY(BPM_VERSION_PATCH)
#define BPM_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
#define BPM_VERSION \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment