From 0839cceac9dd29cc64cd9a634b9d3340cfbf3bbe Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sat, 9 Apr 2011 09:46:59 +0200 Subject: Missing ENOTSOCK added on Win32 Signed-off-by: Martin Sustrik --- include/zmq.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/zmq.h') diff --git a/include/zmq.h b/include/zmq.h index 01c9d80..e6fb60d 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -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) -- cgit v1.2.3