Commit 025cd283 authored by Sebastian Reinhard's avatar Sebastian Reinhard

Fixed an error in mongoose.c that caused a lot of errors where winsock2.h was...

Fixed an error in mongoose.c that caused a lot of errors where winsock2.h was included after windows.h
parent b39426db
......@@ -59,8 +59,8 @@
#if defined(_WIN32) && !defined(__SYMBIAN32__) // Windows specific
#define _WIN32_WINNT 0x0400 // To make it link in VS2005
#include <windows.h>
#include <winsock2.h>
#include <windows.h>
#include <ws2tcpip.h>
#ifndef PATH_MAX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment