summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-10-09 08:03:58 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-10-09 08:03:58 +0200
commit318cdd1f24cd663702222cc182ae2ccac5e76870 (patch)
tree8d18a55d7327e43da1fd81e3df6a8db07e0a1846 /include
parent214b56077a7e5d12813c8034013171d33283566c (diff)
parentef8db789a1c97152e84ff03c9a7f6e1e77d95981 (diff)
Merge branch 'maint'
* maint: Version macros added Conflicts: builds/msvc/platform.hpp Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'include')
-rw-r--r--include/zmq.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/zmq.h b/include/zmq.h
index b8ab6d4..910e381 100644
--- a/include/zmq.h
+++ b/include/zmq.h
@@ -30,6 +30,16 @@ extern "C" {
#include "winsock2.h"
#endif
+/* Version macros */
+#define ZMQ_VERSION_MAJOR 2
+#define ZMQ_VERSION_MINOR 1
+#define ZMQ_VERSION_PATCH 0
+
+#define ZMQ_MAKE_VERSION(major, minor, patch) \
+ (major * 10000 + minor * 100 + patch)
+#define ZMQ_VERSION \
+ ZMQ_MAKE_VERSION(ZMQ_VERSION_MAJOR, ZMQ_VERSION_MINOR, ZMQ_VERSION_PATCH)
+
/* Win32 needs special handling for DLL exports */
#if defined _WIN32
# if defined DLL_EXPORT