added windows.hpp with include check

includes windows.hpp if on windows build for mingw build errors from including zmq.h before windows.h
This commit is contained in:
Michael 2016-02-06 22:39:53 +11:00
parent f472893da1
commit 988d33bcf8

View File

@ -29,6 +29,12 @@
#include <string.h>
#include "platform.hpp"
#ifdef ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include "../include/zmq.h"
#include "macros.hpp"
#include "dish.hpp"