added windows.hpp with include check

windows.hpp must be included before zmq.h when _WIN32_WINNT >= 0x0600
This commit is contained in:
Michael 2016-02-12 23:36:07 +11:00
parent 6f4e9f13f3
commit 45404f4b06

View File

@ -27,6 +27,12 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "platform.hpp"
#ifdef ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include "msg.hpp" #include "msg.hpp"
#include "../include/zmq.h" #include "../include/zmq.h"