Fixed a compilation problem caused by including winsock2.h after windows.h.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@337 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/rdr/Exception.cxx b/rdr/Exception.cxx
index 1fcd154..7d38711 100644
--- a/rdr/Exception.cxx
+++ b/rdr/Exception.cxx
@@ -18,8 +18,8 @@
 #include <rdr/Exception.h>
 #ifdef _WIN32
 #include <tchar.h>
-#include <windows.h>
 #include <winsock2.h>
+#include <windows.h>
 #endif
 
 using namespace rdr;