libwine: Add support for codepage 10008 (Mac Simplified Chinese).

oldstable
Alexandre Julliard 2013-06-26 17:51:47 +02:00
parent 701d5efdef
commit 1aebebaf72
4 changed files with 6404 additions and 1 deletions

View File

@ -15,6 +15,7 @@ C_SRCS = \
c_10003.c \
c_10006.c \
c_10007.c \
c_10008.c \
c_10029.c \
c_1006.c \
c_10079.c \

6399
libs/wine/c_10008.c 100644

File diff suppressed because it is too large Load Diff

View File

@ -68,6 +68,7 @@ extern union cptable cptable_10002;
extern union cptable cptable_10003;
extern union cptable cptable_10006;
extern union cptable cptable_10007;
extern union cptable cptable_10008;
extern union cptable cptable_10029;
extern union cptable cptable_10079;
extern union cptable cptable_10081;
@ -90,7 +91,7 @@ extern union cptable cptable_28604;
extern union cptable cptable_28605;
extern union cptable cptable_28606;
static const union cptable * const cptables[65] =
static const union cptable * const cptables[66] =
{
&cptable_037,
&cptable_424,
@ -136,6 +137,7 @@ static const union cptable * const cptables[65] =
&cptable_10003,
&cptable_10006,
&cptable_10007,
&cptable_10008,
&cptable_10029,
&cptable_10079,
&cptable_10081,

View File

@ -85,6 +85,7 @@ my @allfiles =
[ 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" ],
[ 10008, "VENDORS/APPLE/CHINSIMP.TXT", 0, "Mac Simplified Chinese" ],
[ 10029, "VENDORS/MICSFT/MAC/LATIN2.TXT", 0, "Mac Latin 2" ],
[ 10079, "VENDORS/MICSFT/MAC/ICELAND.TXT", 0, "Mac Icelandic" ],
[ 10081, "VENDORS/MICSFT/MAC/TURKISH.TXT", 0, "Mac Turkish" ],