All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
characterEncodingConvertWin32.h
Go to the documentation of this file.
1 /* characterEncodingConvertWin32.h
2  */
3 #ifndef OSL_CHARACTER_ENCODING_CONVERT_WIN32_H
4 #define OSL_CHARACTER_ENCODING_CONVERT_WIN32_H
5 
6 #ifdef _WIN32
7 #include <string>
8 
9 namespace osl
10 {
11  namespace misc
12  {
13  std::string eucToLang(const std::string& src);
14  }
15  using misc::eucToLang;
16 }
17 #endif
18 
19 #endif /* OSL_CHARACTER_ENCODING_CONVERT_WIN32_H */
20 // ;;; Local Variables:
21 // ;;; mode:c++
22 // ;;; c-basic-offset:2
23 // ;;; End: