mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-16 19:54:38 +01:00
135 lines
3.5 KiB
C
135 lines
3.5 KiB
C
//
|
|
// Platform_WIN32_OSVER.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/include/Poco/Platform_WIN32_OSVER.h#2 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: Core
|
|
// Module: Platform
|
|
//
|
|
// Platform and architecture identification macros
|
|
// and platform-specific definitions for Windows.
|
|
//
|
|
// Copyright (c) 2004-2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_Platform_WIN32_OSVER_INCLUDED
|
|
#define Foundation_Platform_WIN32_OSVER_INCLUDED
|
|
|
|
|
|
#include "Poco/UnWindows.h"
|
|
|
|
|
|
#ifndef POCO_FORCE_MIN_WINDOWS_OS_SUPPORT
|
|
// Determine the real version.
|
|
// This setting can be forced from UnWindows.h
|
|
#if defined (_WIN32_WINNT_WINBLUE)
|
|
//Windows 8.1 _WIN32_WINNT_WINBLUE (0x0602)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WINBLUE
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WINBLUE
|
|
#elif defined (_WIN32_WINNT_WIN8)
|
|
//Windows 8 _WIN32_WINNT_WIN8 (0x0602)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WIN8
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WIN8
|
|
#elif defined (_WIN32_WINNT_WIN7)
|
|
//Windows 7 _WIN32_WINNT_WIN7 (0x0601)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WIN7
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WIN7
|
|
#elif defined (_WIN32_WINNT_WS08)
|
|
//Windows Server 2008 _WIN32_WINNT_WS08 (0x0600)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WS08
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WS08
|
|
#elif defined (_WIN32_WINNT_VISTA)
|
|
//Windows Vista _WIN32_WINNT_VISTA (0x0600)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_VISTA
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_VISTA
|
|
#elif defined (_WIN32_WINNT_LONGHORN)
|
|
//Windows Vista and server 2008 Development _WIN32_WINNT_LONGHORN (0x0600)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_LONGHORN
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION 0x06000000 // hardcoded, VS90 can't find NTDDI_* macros
|
|
#elif defined (_WIN32_WINNT_WS03)
|
|
//Windows Server 2003 with SP1,
|
|
//Windows XP with SP2 _WIN32_WINNT_WS03 (0x0502)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WS03
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WS03
|
|
#elif defined (_WIN32_WINNT_WINXP)
|
|
//Windows Server 2003, Windows XP _WIN32_WINNT_WINXP (0x0501)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WINXP
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION NTDDI_WINXP
|
|
#elif defined (_WIN32_WINNT_WIN2K)
|
|
//Windows 2000 _WIN32_WINNT_WIN2K (0x0500)
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT _WIN32_WINNT_WIN2K
|
|
#elif defined (WINVER)
|
|
// fail back on WINVER
|
|
#ifdef _WIN32_WINNT
|
|
#undef _WIN32_WINNT
|
|
#endif
|
|
#define _WIN32_WINNT WINVER
|
|
#elif !defined(_WIN32_WINNT)
|
|
// last resort = Win XP, SP1 is minimum supported
|
|
#define _WIN32_WINNT 0x0501
|
|
#ifdef NTDDI_VERSION
|
|
#undef NTDDI_VERSION
|
|
#endif
|
|
#define NTDDI_VERSION 0x05010100
|
|
#endif
|
|
#endif // POCO_FORCE_MIN_WINDOWS_OS_SUPPORT
|
|
|
|
|
|
#endif // Foundation_Platform_WIN32_OSVER_INCLUDED
|