libwine: Add support for codepage 10003 (Mac Korean).

This commit is contained in:
Alexandre Julliard 2013-06-26 17:49:30 +02:00
parent c90c593288
commit 701d5efdef
4 changed files with 8318 additions and 1 deletions

View file

@ -12,6 +12,7 @@ C_SRCS = \
c_10000.c \
c_10001.c \
c_10002.c \
c_10003.c \
c_10006.c \
c_10007.c \
c_10029.c \

8313
libs/wine/c_10003.c Normal file

File diff suppressed because it is too large Load diff

View file

@ -65,6 +65,7 @@ extern union cptable cptable_1361;
extern union cptable cptable_10000;
extern union cptable cptable_10001;
extern union cptable cptable_10002;
extern union cptable cptable_10003;
extern union cptable cptable_10006;
extern union cptable cptable_10007;
extern union cptable cptable_10029;
@ -89,7 +90,7 @@ extern union cptable cptable_28604;
extern union cptable cptable_28605;
extern union cptable cptable_28606;
static const union cptable * const cptables[64] =
static const union cptable * const cptables[65] =
{
&cptable_037,
&cptable_424,
@ -132,6 +133,7 @@ static const union cptable * const cptables[64] =
&cptable_10000,
&cptable_10001,
&cptable_10002,
&cptable_10003,
&cptable_10006,
&cptable_10007,
&cptable_10029,

View file

@ -82,6 +82,7 @@ my @allfiles =
[ 10000, "VENDORS/MICSFT/MAC/ROMAN.TXT", 0, "Mac Roman" ],
[ 10001, "VENDORS/APPLE/JAPANESE.TXT", 0, "Mac Japanese" ],
[ 10002, "VENDORS/APPLE/CHINTRAD.TXT", 0, "Mac Traditional Chinese" ],
[ 10003, "VENDORS/APPLE/KOREAN.TXT", 0, "Mac Korean" ],
[ 10006, "VENDORS/MICSFT/MAC/GREEK.TXT", 0, "Mac Greek" ],
[ 10007, "VENDORS/MICSFT/MAC/CYRILLIC.TXT", 0, "Mac Cyrillic" ],
[ 10029, "VENDORS/MICSFT/MAC/LATIN2.TXT", 0, "Mac Latin 2" ],