00001 /* characterEncodingConvertWin32.h 00002 */ 00003 #ifndef OSL_CHARACTER_ENCODING_CONVERT_WIN32_H 00004 #define OSL_CHARACTER_ENCODING_CONVERT_WIN32_H 00005 00006 #ifdef _WIN32 00007 #include <string> 00008 00009 namespace osl 00010 { 00011 namespace misc 00012 { 00013 std::string eucToLang(const std::string& src); 00014 } 00015 using misc::eucToLang; 00016 } 00017 #endif 00018 00019 #endif /* OSL_CHARACTER_ENCODING_CONVERT_WIN32_H */ 00020 // ;;; Local Variables: 00021 // ;;; mode:c++ 00022 // ;;; c-basic-offset:2 00023 // ;;; End: