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