michael@0: // Common/UTFConvert.h michael@0: michael@0: #ifndef __COMMON_UTFCONVERT_H michael@0: #define __COMMON_UTFCONVERT_H michael@0: michael@0: #include "Common/String.h" michael@0: michael@0: bool ConvertUTF8ToUnicode(const AString &utfString, UString &resultString); michael@0: bool ConvertUnicodeToUTF8(const UString &unicodeString, AString &resultString); michael@0: michael@0: #endif