limits.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // limits.hpp --------------------------------------------------------------//
  2. // Copyright 2016 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_LIMITS_HPP_
  6. #define BOOST_DETAIL_WINAPI_LIMITS_HPP_
  7. #include <boost/detail/winapi/basic_types.hpp>
  8. #ifdef BOOST_HAS_PRAGMA_ONCE
  9. #pragma once
  10. #endif
  11. namespace boost {
  12. namespace detail {
  13. namespace winapi {
  14. #if defined( BOOST_USE_WINDOWS_H )
  15. const DWORD_ MAX_PATH_ = MAX_PATH;
  16. #else
  17. const DWORD_ MAX_PATH_ = 260;
  18. #endif
  19. #if defined( BOOST_USE_WINDOWS_H ) && !defined( BOOST_WINAPI_IS_MINGW )
  20. const DWORD_ UNICODE_STRING_MAX_BYTES_ = UNICODE_STRING_MAX_BYTES;
  21. const DWORD_ UNICODE_STRING_MAX_CHARS_ = UNICODE_STRING_MAX_CHARS;
  22. #else
  23. const DWORD_ UNICODE_STRING_MAX_BYTES_ = 65534;
  24. const DWORD_ UNICODE_STRING_MAX_CHARS_ = 32767;
  25. #endif
  26. const DWORD_ max_path = MAX_PATH_;
  27. const DWORD_ unicode_string_max_bytes = UNICODE_STRING_MAX_BYTES_;
  28. const DWORD_ unicode_string_max_chars = UNICODE_STRING_MAX_CHARS_;
  29. }
  30. }
  31. }
  32. #endif // BOOST_DETAIL_WINAPI_LIMITS_HPP_