Commit c90c5932 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent aa23d6ec
......@@ -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 \
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -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,
......
......@@ -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" ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment