mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-07 22:04:33 +02:00
Boost `1.88.0` introduced a feature [^1] that makes use of the Windows API, but it uses API functions that are only available with `PSAPI_VERSION >= 2` and Windows VISTA only supports `PSAPI_VERSION == 1`. Actually, that new feature can also be disabled by setting the `BOOST_STACKTRACE_DISABLE_OFFSET_ADDR_BASE` macro, but since it seems to be a useful feature and isn't even disabled by default, we can just drop it that ancient Windows version instead of disabling it. [^1]: https://github.com/boostorg/stacktrace/pull/200
36 lines
645 B
C++
36 lines
645 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef WIN32_H
|
|
#define WIN32_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT _WIN32_WINNT_WIN7
|
|
#endif /* _WIN32_WINNT */
|
|
#define NOMINMAX
|
|
#include <winsock2.h>
|
|
#include <windows.h>
|
|
#include <ws2tcpip.h>
|
|
#include <imagehlp.h>
|
|
#include <shlwapi.h>
|
|
|
|
#include <direct.h>
|
|
|
|
#ifdef __MINGW32__
|
|
# ifndef IPV6_V6ONLY
|
|
# define IPV6_V6ONLY 27
|
|
# endif /* IPV6_V6ONLY */
|
|
#endif /* __MINGW32__ */
|
|
|
|
typedef int socklen_t;
|
|
typedef SSIZE_T ssize_t;
|
|
|
|
#define MAXPATHLEN MAX_PATH
|
|
|
|
#ifdef _MSC_VER
|
|
typedef DWORD pid_t;
|
|
#define strcasecmp stricmp
|
|
#endif /* _MSC_VER */
|
|
|
|
#endif /* WIN32_H */
|