summaryrefslogtreecommitdiff
path: root/builds
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-06-04 16:29:36 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-06-04 16:29:36 +0200
commitcf048bb1f8a665370d9e39aee2a7363327911b08 (patch)
treebd5af3e844051771646596a6d13d847bf2ea8f85 /builds
parent927993863eda325c66fc678810eeadd0c744cdf2 (diff)
platform.hpp for MSVC contains only very basic stuff
Diffstat (limited to 'builds')
-rw-r--r--builds/msvc/platform.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/builds/msvc/platform.hpp b/builds/msvc/platform.hpp
index bda30c9..b40d161 100644
--- a/builds/msvc/platform.hpp
+++ b/builds/msvc/platform.hpp
@@ -31,34 +31,5 @@
#define PACKAGE_VERSION_PATCH 7
#define ZMQ_HAVE_WINDOWS
-#define _WINSOCKAPI_
-#define NOMINMAX
-#define _CRT_SECURE_NO_WARNINGS
-
-// Turn on only the items zmq needs on the Windows platform.
-
-#ifndef WIN32_LEAN_AND_MEAN
-#define WIN32_LEAN_AND_MEAN
-#endif
-#ifndef NOMCX // No Modem Configuration Extensions.
-#define NOMCX
-#endif
-#ifndef NOIME // No Input Method Editor.
-#define NOIME
-#endif
-#ifndef NOSOUND // No Sound driver routines.
-#define NOSOUND
-#endif
-
-#include <windows.h>
-#include <objbase.h>
-
-// Enable winsock (not included when WIN32_LEAN_AND_MEAN is defined).
-#if(_WIN32_WINNT >= 0x0400)
-#include <winsock2.h>
-#include <mswsock.h>
-#else
-#include <winsock.h>
-#endif
#endif