Skip to content

Commit

Permalink
Fixed issue zeromq#60
Browse files Browse the repository at this point in the history
  • Loading branch information
hintjens committed Aug 6, 2012
1 parent 36f135c commit 4fc4152
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions include/czmq.h
Expand Up @@ -31,6 +31,17 @@
//
#include <czmq_prelude.h>

// CZMQ version macros for compile-time API detection

#define CZMQ_VERSION_MAJOR 1
#define CZMQ_VERSION_MINOR 2
#define CZMQ_VERSION_PATCH 0

#define CZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
#define CZMQ_VERSION \
CZMQ_MAKE_VERSION(CZMQ_VERSION_MAJOR, CZMQ_VERSION_MINOR, CZMQ_VERSION_PATCH)

// Classes listed in alphabetical order

#include <zclock.h>
Expand Down

0 comments on commit 4fc4152

Please sign in to comment.