mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
283 B
C
12 lines
283 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
|