libwine: Add support for codepage 10002 (Mac Traditional Chinese).

This commit is contained in:
Alexandre Julliard 2013-06-26 17:46:35 +02:00
parent aa23d6ecc6
commit c90c593288
4 changed files with 6635 additions and 1 deletions

View File

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

6630
libs/wine/c_10002.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -64,6 +64,7 @@ extern union cptable cptable_1258;
extern union cptable cptable_1361;
extern union cptable cptable_10000;
extern union cptable cptable_10001;
extern union cptable cptable_10002;
extern union cptable cptable_10006;
extern union cptable cptable_10007;
extern union cptable cptable_10029;
@ -88,7 +89,7 @@ extern union cptable cptable_28604;
extern union cptable cptable_28605;
extern union cptable cptable_28606;
static const union cptable * const cptables[63] =
static const union cptable * const cptables[64] =
{
&cptable_037,
&cptable_424,
@ -130,6 +131,7 @@ static const union cptable * const cptables[63] =
&cptable_1361,
&cptable_10000,
&cptable_10001,
&cptable_10002,
&cptable_10006,
&cptable_10007,
&cptable_10029,

View File

@ -81,6 +81,7 @@ my @allfiles =
[ 1361, "OBSOLETE/EASTASIA/KSC/JOHAB.TXT", 0, "Korean Johab" ],
[ 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" ],
[ 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" ],