mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
platform.hpp for MSVC contains only very basic stuff
This commit is contained in:
parent
927993863e
commit
cf048bb1f8
@ -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
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user