Re: mlang: tests, converstion test was falsely failing on windows xp for codepage 1361 (Korean, Johab) because of lack of roman characters
9 Oct
2008
9 Oct
'08
12:39 p.m.
Aric Stewart <aric(a)codeweavers.com> writes:
@@ -259,6 +259,15 @@ static BOOL check_convertible(IMultiLanguage2 *iML2, UINT from, UINT to)
static WCHAR strW[] = {'a','b','c',0};
+ if (from == 1361 || to == 1361) + { + /* + * This is Korean (Johab). This codepages does not have latin + * characters so these checks fail causing confusions later. + */ + return TRUE; + }
There should be a way to detect this with a generic check, instead of having to hardcode specific codepages. -- Alexandre Julliard julliard(a)winehq.org
6275
Age (days ago)
6275
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard