mame/3rdparty/lzma/CPP/Common/UTFConvert.h
2015-01-11 08:10:25 +01:00

12 lines
272 B
C

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