config.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*
  2. * Copyright 2013, 2017 Andrey Semashev
  3. * Copyright 2017 James E. King, III
  4. *
  5. * Distributed under the Boost Software License, Version 1.0.
  6. * See http://www.boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_WINAPI_CONFIG_HPP_INCLUDED_
  9. #define BOOST_WINAPI_CONFIG_HPP_INCLUDED_
  10. #include <boost/predef/version_number.h>
  11. #include <boost/predef/platform.h>
  12. #if defined(__CYGWIN__)
  13. // Cygwin 64 compiler does not define _WIN64 and instead defines it in a private header. We can't define _WIN64 ourselves because
  14. // the header defines the macro unconditionally and if the user includes both Boost.WinAPI and Cygwin WinAPI headers there will be conflict.
  15. #include <_cygwin.h>
  16. #endif
  17. #if defined(__MINGW32__)
  18. // MinGW and MinGW-w64 define __MINGW32_VERSION_MAJOR/MINOR and __MINGW64_VERSION_MAJOR/MINOR macros in a private header.
  19. #include <_mingw.h>
  20. #endif
  21. // BOOST_WINAPI_IS_MINGW indicates that the target Windows SDK is provided by MinGW (http://mingw.org/).
  22. // BOOST_WINAPI_IS_MINGW_W64 indicates that the target Windows SDK is provided by MinGW-w64 (http://mingw-w64.org).
  23. // BOOST_WINAPI_IS_CYGWIN indicates that the target Windows SDK is provided by MinGW variant from Cygwin (https://cygwin.com/).
  24. #if defined(__CYGWIN__)
  25. #define BOOST_WINAPI_IS_CYGWIN
  26. #elif BOOST_PLAT_MINGW
  27. #if defined(__MINGW64_VERSION_MAJOR)
  28. #define BOOST_WINAPI_IS_MINGW_W64
  29. #else
  30. #define BOOST_WINAPI_IS_MINGW
  31. #endif
  32. #endif
  33. // These constants reflect _WIN32_WINNT_* macros from sdkddkver.h
  34. // See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa383745%28v=vs.85%29.aspx#setting_winver_or__win32_winnt
  35. #define BOOST_WINAPI_VERSION_NT4 0x0400
  36. #define BOOST_WINAPI_VERSION_WIN2K 0x0500
  37. #define BOOST_WINAPI_VERSION_WINXP 0x0501
  38. #define BOOST_WINAPI_VERSION_WS03 0x0502
  39. #define BOOST_WINAPI_VERSION_WIN6 0x0600
  40. #define BOOST_WINAPI_VERSION_VISTA 0x0600
  41. #define BOOST_WINAPI_VERSION_WS08 0x0600
  42. #define BOOST_WINAPI_VERSION_LONGHORN 0x0600
  43. #define BOOST_WINAPI_VERSION_WIN7 0x0601
  44. #define BOOST_WINAPI_VERSION_WIN8 0x0602
  45. #define BOOST_WINAPI_VERSION_WINBLUE 0x0603
  46. #define BOOST_WINAPI_VERSION_WINTHRESHOLD 0x0A00
  47. #define BOOST_WINAPI_VERSION_WIN10 0x0A00
  48. // These constants reflect NTDDI_* macros from sdkddkver.h
  49. #define BOOST_WINAPI_NTDDI_WIN2K 0x05000000
  50. #define BOOST_WINAPI_NTDDI_WIN2KSP1 0x05000100
  51. #define BOOST_WINAPI_NTDDI_WIN2KSP2 0x05000200
  52. #define BOOST_WINAPI_NTDDI_WIN2KSP3 0x05000300
  53. #define BOOST_WINAPI_NTDDI_WIN2KSP4 0x05000400
  54. #define BOOST_WINAPI_NTDDI_WINXP 0x05010000
  55. #define BOOST_WINAPI_NTDDI_WINXPSP1 0x05010100
  56. #define BOOST_WINAPI_NTDDI_WINXPSP2 0x05010200
  57. #define BOOST_WINAPI_NTDDI_WINXPSP3 0x05010300
  58. #define BOOST_WINAPI_NTDDI_WINXPSP4 0x05010400
  59. #define BOOST_WINAPI_NTDDI_WS03 0x05020000
  60. #define BOOST_WINAPI_NTDDI_WS03SP1 0x05020100
  61. #define BOOST_WINAPI_NTDDI_WS03SP2 0x05020200
  62. #define BOOST_WINAPI_NTDDI_WS03SP3 0x05020300
  63. #define BOOST_WINAPI_NTDDI_WS03SP4 0x05020400
  64. #define BOOST_WINAPI_NTDDI_WIN6 0x06000000
  65. #define BOOST_WINAPI_NTDDI_WIN6SP1 0x06000100
  66. #define BOOST_WINAPI_NTDDI_WIN6SP2 0x06000200
  67. #define BOOST_WINAPI_NTDDI_WIN6SP3 0x06000300
  68. #define BOOST_WINAPI_NTDDI_WIN6SP4 0x06000400
  69. #define BOOST_WINAPI_NTDDI_VISTA BOOST_WINAPI_NTDDI_WIN6
  70. #define BOOST_WINAPI_NTDDI_VISTASP1 BOOST_WINAPI_NTDDI_WIN6SP1
  71. #define BOOST_WINAPI_NTDDI_VISTASP2 BOOST_WINAPI_NTDDI_WIN6SP2
  72. #define BOOST_WINAPI_NTDDI_VISTASP3 BOOST_WINAPI_NTDDI_WIN6SP3
  73. #define BOOST_WINAPI_NTDDI_VISTASP4 BOOST_WINAPI_NTDDI_WIN6SP4
  74. #define BOOST_WINAPI_NTDDI_LONGHORN BOOST_WINAPI_NTDDI_VISTA
  75. #define BOOST_WINAPI_NTDDI_WS08 BOOST_WINAPI_NTDDI_WIN6SP1
  76. #define BOOST_WINAPI_NTDDI_WS08SP2 BOOST_WINAPI_NTDDI_WIN6SP2
  77. #define BOOST_WINAPI_NTDDI_WS08SP3 BOOST_WINAPI_NTDDI_WIN6SP3
  78. #define BOOST_WINAPI_NTDDI_WS08SP4 BOOST_WINAPI_NTDDI_WIN6SP4
  79. #define BOOST_WINAPI_NTDDI_WIN7 0x06010000
  80. #define BOOST_WINAPI_NTDDI_WIN7SP1 0x06010100 // Not defined in Windows SDK
  81. #define BOOST_WINAPI_NTDDI_WIN8 0x06020000
  82. #define BOOST_WINAPI_NTDDI_WINBLUE 0x06030000
  83. #define BOOST_WINAPI_NTDDI_WINTHRESHOLD 0x0A000000
  84. #define BOOST_WINAPI_NTDDI_WIN10 0x0A000000
  85. #define BOOST_WINAPI_NTDDI_WIN10_TH2 0x0A000001
  86. #define BOOST_WINAPI_NTDDI_WIN10_RS1 0x0A000002
  87. #define BOOST_WINAPI_NTDDI_WIN10_RS2 0x0A000003
  88. #define BOOST_WINAPI_NTDDI_WIN10_RS3 0x0A000004
  89. #define BOOST_WINAPI_DETAIL_MAKE_NTDDI_VERSION2(x) x##0000
  90. #define BOOST_WINAPI_DETAIL_MAKE_NTDDI_VERSION(x) BOOST_WINAPI_DETAIL_MAKE_NTDDI_VERSION2(x)
  91. #if !defined(BOOST_USE_WINAPI_VERSION)
  92. #if defined(_WIN32_WINNT)
  93. #define BOOST_USE_WINAPI_VERSION _WIN32_WINNT
  94. #elif defined(WINVER)
  95. #define BOOST_USE_WINAPI_VERSION WINVER
  96. #else
  97. // By default use Windows 10 API on compilers that support it and latest versions on the others
  98. #if (defined(_MSC_VER) && _MSC_VER < 1500) || defined(BOOST_WINAPI_IS_MINGW)
  99. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WINXP
  100. #elif (defined(_MSC_VER) && _MSC_VER < 1600)
  101. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WIN6
  102. #elif (defined(_MSC_VER) && _MSC_VER < 1700)
  103. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WIN7
  104. #elif (defined(_MSC_VER) && _MSC_VER < 1800)
  105. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WIN8
  106. #elif (defined(_MSC_VER) && _MSC_VER < 1900)
  107. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WINBLUE
  108. #else
  109. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WIN10
  110. #endif
  111. #endif
  112. #endif
  113. #if !defined(BOOST_USE_NTDDI_VERSION)
  114. #if defined(NTDDI_VERSION)
  115. #define BOOST_USE_NTDDI_VERSION NTDDI_VERSION
  116. // Default to respective Windows version with the latest Service Pack
  117. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WIN2K
  118. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WIN2KSP4
  119. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WINXP
  120. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WINXPSP3
  121. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WS03
  122. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WS03SP2
  123. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WIN6
  124. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WIN6SP2
  125. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WIN7
  126. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WIN7SP1
  127. #elif BOOST_USE_WINAPI_VERSION == BOOST_WINAPI_VERSION_WIN10
  128. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_NTDDI_WIN10_RS3
  129. #else
  130. #define BOOST_USE_NTDDI_VERSION BOOST_WINAPI_DETAIL_MAKE_NTDDI_VERSION(BOOST_USE_WINAPI_VERSION)
  131. #endif
  132. #endif
  133. // Known Windows SDK versions, taken from VER_PRODUCTBUILD macro value defined in ntverp.h.
  134. // These values can be used to compare with BOOST_PLAT_WINDOWS_SDK_VERSION from Boost.Predef.
  135. #define BOOST_WINAPI_WINDOWS_SDK_MSVC71 BOOST_VERSION_NUMBER(0, 0, 3668) // Windows SDK bundled with MSVC 7.1
  136. #define BOOST_WINAPI_WINDOWS_SDK_MSVC8 BOOST_VERSION_NUMBER(0, 0, 3790) // Windows SDK bundled with MSVC 8
  137. #define BOOST_WINAPI_WINDOWS_SDK_6_0 BOOST_VERSION_NUMBER(0, 0, 6000) // Windows SDK 6.0
  138. #define BOOST_WINAPI_WINDOWS_SDK_7_0 BOOST_VERSION_NUMBER(0, 0, 7600) // Windows SDK 7.0, 7.1
  139. #define BOOST_WINAPI_WINDOWS_SDK_8_0 BOOST_VERSION_NUMBER(0, 0, 9200) // Windows SDK 8.0
  140. #define BOOST_WINAPI_WINDOWS_SDK_8_1 BOOST_VERSION_NUMBER(0, 0, 9600) // Windows SDK 8.1
  141. #define BOOST_WINAPI_WINDOWS_SDK_10_0 BOOST_VERSION_NUMBER(0, 0, 10011) // Windows SDK 10.0
  142. // MinGW does not have the ntverp.h header but it defines VER_PRODUCTBUILD in ddk/ntifs.h.
  143. // Cygwin MinGW also defines this version.
  144. #define BOOST_WINAPI_WINDOWS_SDK_MINGW BOOST_VERSION_NUMBER(0, 0, 10000)
  145. // MinGW-w64 defines the same version as the Windows SDK bundled with MSVC 8
  146. #define BOOST_WINAPI_WINDOWS_SDK_MINGW_W64 BOOST_VERSION_NUMBER(0, 0, 3790)
  147. #if !defined(BOOST_USE_WINAPI_FAMILY)
  148. #if defined(WINAPI_FAMILY)
  149. #define BOOST_USE_WINAPI_FAMILY WINAPI_FAMILY
  150. #elif defined(WINAPI_FAMILY_DESKTOP_APP)
  151. // If none is specified, default to a desktop application which is the most
  152. // backwards compatible to previous ways of doing things, if families are even
  153. // defined.
  154. #define BOOST_USE_WINAPI_FAMILY WINAPI_FAMILY_DESKTOP_APP
  155. #endif
  156. #endif
  157. //
  158. // UWP Support
  159. //
  160. // On platforms without windows family partition support it is assumed one
  161. // has all APIs and access is controlled by _WIN32_WINNT or similar mechanisms.
  162. //
  163. // Leveraging Boost.Predef here
  164. //
  165. #if BOOST_PLAT_WINDOWS_UWP
  166. #define BOOST_WINAPI_PARTITION_APP (BOOST_PLAT_WINDOWS_DESKTOP || BOOST_PLAT_WINDOWS_STORE || BOOST_WINAPI_PARTITION_PHONE)
  167. #define BOOST_WINAPI_PARTITION_PC (BOOST_PLAT_WINDOWS_STORE)
  168. #define BOOST_WINAPI_PARTITION_PHONE (BOOST_PLAT_WINDOWS_PHONE)
  169. #define BOOST_WINAPI_PARTITION_SYSTEM (BOOST_PLAT_WINDOWS_SYSTEM)
  170. #define BOOST_WINAPI_PARTITION_SERVER (BOOST_PLAT_WINDOWS_SERVER)
  171. #define BOOST_WINAPI_PARTITION_DESKTOP (BOOST_PLAT_WINDOWS_DESKTOP)
  172. #else // BOOST_PLAT_WINDOWS_UWP
  173. #define BOOST_WINAPI_PARTITION_APP (1)
  174. #define BOOST_WINAPI_PARTITION_PC (1)
  175. #define BOOST_WINAPI_PARTITION_PHONE (1)
  176. #define BOOST_WINAPI_PARTITION_SYSTEM (1)
  177. #define BOOST_WINAPI_PARTITION_SERVER (1)
  178. #define BOOST_WINAPI_PARTITION_DESKTOP (1)
  179. #endif // BOOST_PLAT_WINDOWS_UWP
  180. //
  181. // Windows 8.x SDK defines some items in the DESKTOP partition and then Windows SDK 10.0 defines
  182. // the same items to be in APP or SYSTEM partitions, and APP expands to DESKTOP or PC or PHONE.
  183. // The definition of BOOST_WINAPI_PARTITION_APP_SYSTEM provides a universal way to get this
  184. // right as it is seen in a number of places in the SDK.
  185. //
  186. #define BOOST_WINAPI_PARTITION_APP_SYSTEM \
  187. ( \
  188. ((BOOST_PLAT_WINDOWS_SDK_VERSION >= BOOST_WINAPI_WINDOWS_SDK_10_0) && (BOOST_WINAPI_PARTITION_APP || BOOST_WINAPI_PARTITION_SYSTEM)) || \
  189. ((BOOST_PLAT_WINDOWS_SDK_VERSION < BOOST_WINAPI_WINDOWS_SDK_10_0) && BOOST_WINAPI_PARTITION_DESKTOP) \
  190. )
  191. // Simiarly, some other symbols were re-classified as DESKTOP or SYSTEM
  192. #define BOOST_WINAPI_PARTITION_DESKTOP_SYSTEM \
  193. ( \
  194. ((BOOST_PLAT_WINDOWS_SDK_VERSION >= BOOST_WINAPI_WINDOWS_SDK_10_0) && (BOOST_WINAPI_PARTITION_DESKTOP || BOOST_WINAPI_PARTITION_SYSTEM)) || \
  195. ((BOOST_PLAT_WINDOWS_SDK_VERSION < BOOST_WINAPI_WINDOWS_SDK_10_0) && BOOST_WINAPI_PARTITION_DESKTOP) \
  196. )
  197. #if defined(BOOST_USE_WINDOWS_H) || defined(BOOST_WINAPI_DEFINE_VERSION_MACROS)
  198. // We have to define the version macros so that windows.h provides the necessary symbols
  199. #if !defined(_WIN32_WINNT)
  200. #define _WIN32_WINNT BOOST_USE_WINAPI_VERSION
  201. #endif
  202. #if !defined(WINVER)
  203. #define WINVER BOOST_USE_WINAPI_VERSION
  204. #endif
  205. #if !defined(NTDDI_VERSION)
  206. #define NTDDI_VERSION BOOST_USE_NTDDI_VERSION
  207. #endif
  208. #if !defined(WINAPI_FAMILY) && defined(BOOST_USE_WINAPI_FAMILY)
  209. #define WINAPI_FAMILY BOOST_USE_WINAPI_FAMILY
  210. #endif
  211. #endif
  212. #if defined (WIN32_PLATFORM_PSPC)
  213. #define BOOST_WINAPI_IMPORT BOOST_SYMBOL_IMPORT
  214. #define BOOST_WINAPI_IMPORT_EXCEPT_WM
  215. #elif defined (_WIN32_WCE)
  216. #define BOOST_WINAPI_IMPORT
  217. #define BOOST_WINAPI_IMPORT_EXCEPT_WM
  218. #else
  219. #define BOOST_WINAPI_IMPORT BOOST_SYMBOL_IMPORT
  220. #define BOOST_WINAPI_IMPORT_EXCEPT_WM BOOST_SYMBOL_IMPORT
  221. #endif
  222. #include <boost/config.hpp>
  223. #ifdef BOOST_HAS_PRAGMA_ONCE
  224. #pragma once
  225. #endif
  226. #endif // BOOST_WINAPI_CONFIG_HPP_INCLUDED_