mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
318ba8836f
* Added two new files: errno.hpp and errno.cpp. They are required to use errno functionality on WM. * zmq.cpp, msg.h: removed inclusion of errno.h because it is included in zmq.h that is also included by .cpp. * windows.hpp: process.h is included only for desktop builds. * thread.cpp: on CE CreateThread is used instead of __beginthreadex * socket_base.cpp, clock.cpp: on CE include cmnintrin.h instead on intrin.h * signaler.cpp: on Windows should use special macro around event name (for unicode builds) * err.hpp: make it include errno.hpp (my file) instead on errno.h when building for CE * err.cpp: use FormatMessage when building for CE (because CE does not have ANSI API functions) * zmq.h: do not include errno.h whe building for CE * libzmq.vcproj: add tro new files
182 lines
4.7 KiB
C++
182 lines
4.7 KiB
C++
/*
|
|
Copyright (c) 2010-2011 250bpm s.r.o.
|
|
Copyright (c) 2007-2009 iMatix Corporation
|
|
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
|
|
|
This file is part of 0MQ.
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
0MQ is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __ZMQ_WINDOWS_HPP_INCLUDED__
|
|
#define __ZMQ_WINDOWS_HPP_INCLUDED__
|
|
|
|
// The purpose of this header file is to turn on only the items actually
|
|
// needed on the windows platform.
|
|
|
|
#ifndef _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#endif
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
#ifndef NOGDICAPMASKS
|
|
#define NOGDICAPMASKS // CC_*, LC_*, PC_*, CP_*, TC_*, RC_
|
|
#endif
|
|
#ifndef NOVIRTUALKEYCODES
|
|
#define NOVIRTUALKEYCODES // VK_*
|
|
#endif
|
|
#ifndef NOWINMESSAGES
|
|
#define NOWINMESSAGES // WM_*, EM_*, LB_*, CB_*
|
|
#endif
|
|
#ifndef NOWINSTYLES
|
|
#define NOWINSTYLES // WS_*, CS_*, ES_*, LBS_*, SBS_*, CBS_*
|
|
#endif
|
|
#ifndef NOSYSMETRICS
|
|
#define NOSYSMETRICS // SM_*
|
|
#endif
|
|
#ifndef NOMENUS
|
|
#define NOMENUS // MF_*
|
|
#endif
|
|
#ifndef NOICONS
|
|
#define NOICONS // IDI_*
|
|
#endif
|
|
#ifndef NOKEYSTATES
|
|
#define NOKEYSTATES // MK_*
|
|
#endif
|
|
#ifndef NOSYSCOMMANDS
|
|
#define NOSYSCOMMANDS // SC_*
|
|
#endif
|
|
#ifndef NORASTEROPS
|
|
#define NORASTEROPS // Binary and Tertiary raster ops
|
|
#endif
|
|
#ifndef NOSHOWWINDOW
|
|
#define NOSHOWWINDOW // SW_*
|
|
#endif
|
|
#ifndef OEMRESOURCE
|
|
#define OEMRESOURCE // OEM Resource values
|
|
#endif
|
|
#ifndef NOATOM
|
|
#define NOATOM // Atom Manager routines
|
|
#endif
|
|
#ifndef NOCLIPBOARD
|
|
#define NOCLIPBOARD // Clipboard routines
|
|
#endif
|
|
#ifndef NOCOLOR
|
|
#define NOCOLOR // Screen colors
|
|
#endif
|
|
#ifndef NOCTLMGR
|
|
#define NOCTLMGR // Control and Dialog routines
|
|
#endif
|
|
#ifndef NODRAWTEXT
|
|
#define NODRAWTEXT // DrawText() and DT_*
|
|
#endif
|
|
#ifndef NOGDI
|
|
#define NOGDI // All GDI defines and routines
|
|
#endif
|
|
#ifndef NOKERNEL
|
|
#define NOKERNEL // All KERNEL defines and routines
|
|
#endif
|
|
#ifndef NOUSER
|
|
#define NOUSER // All USER defines and routines
|
|
#endif
|
|
#ifndef NONLS
|
|
#define NONLS // All NLS defines and routines
|
|
#endif
|
|
#ifndef NOMB
|
|
#define NOMB // MB_* and MessageBox()
|
|
#endif
|
|
#ifndef NOMEMMGR
|
|
#define NOMEMMGR // GMEM_*, LMEM_*, GHND, LHND, associated routines
|
|
#endif
|
|
#ifndef NOMETAFILE
|
|
#define NOMETAFILE // typedef METAFILEPICT
|
|
#endif
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX // Macros min(a,b) and max(a,b)
|
|
#endif
|
|
#ifndef NOMSG
|
|
#define NOMSG // typedef MSG and associated routines
|
|
#endif
|
|
#ifndef NOOPENFILE
|
|
#define NOOPENFILE // OpenFile(), OemToAnsi, AnsiToOem, and OF_*
|
|
#endif
|
|
#ifndef NOSCROLL
|
|
#define NOSCROLL // SB_* and scrolling routines
|
|
#endif
|
|
#ifndef NOSERVICE
|
|
#define NOSERVICE // All Service Controller routines, SERVICE_ equates, etc.
|
|
#endif
|
|
#ifndef NOSOUND
|
|
#define NOSOUND // Sound driver routines
|
|
#endif
|
|
#ifndef NOTEXTMETRIC
|
|
#define NOTEXTMETRIC // typedef TEXTMETRIC and associated routines
|
|
#endif
|
|
#ifndef NOWH
|
|
#define NOWH // SetWindowsHook and WH_*
|
|
#endif
|
|
#ifndef NOWINOFFSETS
|
|
#define NOWINOFFSETS // GWL_*, GCL_*, associated routines
|
|
#endif
|
|
#ifndef NOCOMM
|
|
#define NOCOMM // COMM driver routines
|
|
#endif
|
|
#ifndef NOKANJI
|
|
#define NOKANJI // Kanji support stuff.
|
|
#endif
|
|
#ifndef NOHELP
|
|
#define NOHELP // Help engine interface.
|
|
#endif
|
|
#ifndef NOPROFILER
|
|
#define NOPROFILER // Profiler interface.
|
|
#endif
|
|
#ifndef NODEFERWINDOWPOS
|
|
#define NODEFERWINDOWPOS // DeferWindowPos routines
|
|
#endif
|
|
#ifndef NOMCX
|
|
#define NOMCX // Modem Configuration ExtensionsA
|
|
#endif
|
|
|
|
// Set target version to Windows Server 2003, Windows XP/SP1 or higher.
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0501
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#ifdef __MINGW32__
|
|
// Require Windows XP or higher with MinGW for getaddrinfo().
|
|
#if(_WIN32_WINNT >= 0x0501)
|
|
#else
|
|
#undef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0501
|
|
#endif
|
|
#endif
|
|
|
|
#include <winsock2.h>
|
|
#include <mswsock.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
#include <ipexport.h>
|
|
#if !defined WINCE
|
|
#include <process.h>
|
|
#endif
|
|
|
|
// In MinGW environment AI_NUMERICSERV is not defined.
|
|
#ifndef AI_NUMERICSERV
|
|
#define AI_NUMERICSERV 0x0400
|
|
#endif
|
|
#endif
|