platform.hpp for MSVC contains only very basic stuff

This commit is contained in:
Martin Sustrik 2010-06-04 16:29:36 +02:00
parent 927993863e
commit cf048bb1f8
8 changed files with 23 additions and 32 deletions

View File

@ -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

View File

@ -19,7 +19,9 @@
#include <assert.h>
#include <stdlib.h>
#ifndef _WIN32
#ifdef _WIN32
# include "../src/windows.hpp"
#else
# include <sys/time.h>
# include <unistd.h>
#endif

View File

@ -20,6 +20,11 @@
#ifndef __ZMQ_ENCODER_HPP_INCLUDED__
#define __ZMQ_ENCODER_HPP_INCLUDED__
#include "platform.hpp"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include <stddef.h>
#include <string.h>
#include <stdlib.h>

View File

@ -22,6 +22,11 @@
#include <new>
#include <algorithm>
#include "platform.hpp"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include "err.hpp"
#include "prefix_tree.hpp"

View File

@ -17,7 +17,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "platform.hpp"
#include "uuid.hpp"
#include "err.hpp"

View File

@ -29,6 +29,7 @@
defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_CYGWIN
#include <uuid/uuid.h>
#elif defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#include <rpc.h>
#elif defined ZMQ_HAVE_OPENVMS
typedef struct

View File

@ -23,6 +23,10 @@
// The purpose of this header file is to turn on only the items actually needed
// on the windows platform.
#define _WINSOCKAPI_
#define NOMINMAX
#define _CRT_SECURE_NO_WARNINGS
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif

View File

@ -17,8 +17,12 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "platform.hpp"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include <string.h>
#include <new>
#include "zmq_engine.hpp"