lcid.hpp 628 B

12345678910111213141516171819202122232425
  1. //
  2. // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. #ifndef BOOST_LOCALE_IMPL_WIN32_LCID_HPP
  9. #define BOOST_LOCALE_IMPL_WIN32_LCID_HPP
  10. #include <string>
  11. #include <boost/locale/config.hpp>
  12. namespace boost {
  13. namespace locale {
  14. namespace impl_win {
  15. BOOST_LOCALE_DECL unsigned locale_to_lcid(std::string const &locale_name);
  16. } // impl_win
  17. } // locale
  18. } // boost
  19. #endif
  20. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4