diff options
Diffstat (limited to 'include/zmq.h')
| -rw-r--r-- | include/zmq.h | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/include/zmq.h b/include/zmq.h index a7b20b3..5857ba8 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -55,7 +55,7 @@ extern "C" {  /*  Version macros for compile-time API version detection                     */  #define ZMQ_VERSION_MAJOR 2  #define ZMQ_VERSION_MINOR 1 -#define ZMQ_VERSION_PATCH 6 +#define ZMQ_VERSION_PATCH 7  #define ZMQ_MAKE_VERSION(major, minor, patch) \      ((major) * 10000 + (minor) * 100 + (patch)) @@ -98,6 +98,9 @@ ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch);  #ifndef EINPROGRESS  #define EINPROGRESS (ZMQ_HAUSNUMERO + 8)  #endif +#ifndef ENOTSOCK +#define ENOTSOCK (ZMQ_HAUSNUMERO + 9) +#endif  /*  Native 0MQ error codes.                                                   */  #define EFSM (ZMQ_HAUSNUMERO + 51) | 
