config.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // config.hpp --------------------------------------------------------------//
  2. // Copyright 2013 Andrey Semashev
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #ifndef BOOST_DETAIL_WINAPI_CONFIG_HPP_INCLUDED_
  6. #define BOOST_DETAIL_WINAPI_CONFIG_HPP_INCLUDED_
  7. #if defined __MINGW32__
  8. #include <_mingw.h>
  9. #endif
  10. // BOOST_WINAPI_IS_MINGW indicates that the target Windows SDK is provided by MinGW (http://mingw.org/).
  11. // BOOST_WINAPI_IS_MINGW_W64 indicates that the target Windows SDK is provided by MinGW-w64 (http://mingw-w64.org).
  12. #if defined __MINGW32__
  13. #if defined __MINGW64_VERSION_MAJOR
  14. #define BOOST_WINAPI_IS_MINGW_W64
  15. #else
  16. #define BOOST_WINAPI_IS_MINGW
  17. #endif
  18. #endif
  19. // These constants reflect _WIN32_WINNT_* macros from sdkddkver.h
  20. // See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa383745%28v=vs.85%29.aspx#setting_winver_or__win32_winnt
  21. #define BOOST_WINAPI_VERSION_NT4 0x0400
  22. #define BOOST_WINAPI_VERSION_WIN2K 0x0500
  23. #define BOOST_WINAPI_VERSION_WINXP 0x0501
  24. #define BOOST_WINAPI_VERSION_WS03 0x0502
  25. #define BOOST_WINAPI_VERSION_WIN6 0x0600
  26. #define BOOST_WINAPI_VERSION_VISTA 0x0600
  27. #define BOOST_WINAPI_VERSION_WS08 0x0600
  28. #define BOOST_WINAPI_VERSION_LONGHORN 0x0600
  29. #define BOOST_WINAPI_VERSION_WIN7 0x0601
  30. #define BOOST_WINAPI_VERSION_WIN8 0x0602
  31. #define BOOST_WINAPI_VERSION_WINBLUE 0x0603
  32. #define BOOST_WINAPI_VERSION_WINTHRESHOLD 0x0A00
  33. #define BOOST_WINAPI_VERSION_WIN10 0x0A00
  34. #if !defined(BOOST_USE_WINAPI_VERSION)
  35. #if defined(_WIN32_WINNT)
  36. #define BOOST_USE_WINAPI_VERSION _WIN32_WINNT
  37. #elif defined(WINVER)
  38. #define BOOST_USE_WINAPI_VERSION WINVER
  39. #else
  40. // By default use Windows Vista API on compilers that support it and XP on the others
  41. #if (defined(_MSC_VER) && _MSC_VER < 1500) || defined(BOOST_WINAPI_IS_MINGW)
  42. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WINXP
  43. #else
  44. #define BOOST_USE_WINAPI_VERSION BOOST_WINAPI_VERSION_WIN6
  45. #endif
  46. #endif
  47. #endif
  48. #if defined(BOOST_USE_WINDOWS_H)
  49. // We have to define the version macros so that windows.h provides the necessary symbols
  50. #if !defined(_WIN32_WINNT)
  51. #define _WIN32_WINNT BOOST_USE_WINAPI_VERSION
  52. #endif
  53. #if !defined(WINVER)
  54. #define WINVER BOOST_USE_WINAPI_VERSION
  55. #endif
  56. #endif
  57. #include <boost/config.hpp>
  58. #ifdef BOOST_HAS_PRAGMA_ONCE
  59. #pragma once
  60. #endif
  61. #endif // BOOST_DETAIL_WINAPI_CONFIG_HPP_INCLUDED_