]> source.dussan.org Git - tigervnc.git/commitdiff
Windows has a bit of a peculiarity in that winsock2.h must be included
authorPierre Ossman <ossman@cendio.se>
Thu, 26 Apr 2012 09:18:19 +0000 (09:18 +0000)
committerPierre Ossman <ossman@cendio.se>
Thu, 26 Apr 2012 09:18:19 +0000 (09:18 +0000)
before windows.h for correct winsock behaviour. mingw-w64 also enforces
this order, so to avoid compile errors we must include windows.h late in
all files.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4906 3789f03b-4d11-0410-bbf8-ca57d06f2519

win/winvnc/JavaViewer.cxx

index 6f9f6de510fd1afb537ae6e6fa7c08d54f6ef559..3813f22cf6cc13cb154eefd1dd8fb372dbc716c1 100644 (file)
@@ -16,7 +16,6 @@
  * USA.
  */
 
-#include <windows.h>
 #include <winvnc/JavaViewer.h>
 #include <winvnc/resource.h>
 #include <rdr/MemInStream.h>
@@ -24,6 +23,8 @@
 #include <rfb/VNCServerST.h>
 #include <rfb_win32/TCharArray.h>
 
+#include <windows.h>
+
 #define strcasecmp _stricmp
 
 using namespace winvnc;