Commit 1aebebaf authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 701d5efd
...@@ -15,6 +15,7 @@ C_SRCS = \ ...@@ -15,6 +15,7 @@ C_SRCS = \
c_10003.c \ c_10003.c \
c_10006.c \ c_10006.c \
c_10007.c \ c_10007.c \
c_10008.c \
c_10029.c \ c_10029.c \
c_1006.c \ c_1006.c \
c_10079.c \ c_10079.c \
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -68,6 +68,7 @@ extern union cptable cptable_10002; ...@@ -68,6 +68,7 @@ extern union cptable cptable_10002;
extern union cptable cptable_10003; extern union cptable cptable_10003;
extern union cptable cptable_10006; extern union cptable cptable_10006;
extern union cptable cptable_10007; extern union cptable cptable_10007;
extern union cptable cptable_10008;
extern union cptable cptable_10029; extern union cptable cptable_10029;
extern union cptable cptable_10079; extern union cptable cptable_10079;
extern union cptable cptable_10081; extern union cptable cptable_10081;
...@@ -90,7 +91,7 @@ extern union cptable cptable_28604; ...@@ -90,7 +91,7 @@ extern union cptable cptable_28604;
extern union cptable cptable_28605; extern union cptable cptable_28605;
extern union cptable cptable_28606; extern union cptable cptable_28606;
static const union cptable * const cptables[65] = static const union cptable * const cptables[66] =
{ {
&cptable_037, &cptable_037,
&cptable_424, &cptable_424,
...@@ -136,6 +137,7 @@ static const union cptable * const cptables[65] = ...@@ -136,6 +137,7 @@ static const union cptable * const cptables[65] =
&cptable_10003, &cptable_10003,
&cptable_10006, &cptable_10006,
&cptable_10007, &cptable_10007,
&cptable_10008,
&cptable_10029, &cptable_10029,
&cptable_10079, &cptable_10079,
&cptable_10081, &cptable_10081,
......
...@@ -85,6 +85,7 @@ my @allfiles = ...@@ -85,6 +85,7 @@ my @allfiles =
[ 10003, "VENDORS/APPLE/KOREAN.TXT", 0, "Mac Korean" ], [ 10003, "VENDORS/APPLE/KOREAN.TXT", 0, "Mac Korean" ],
[ 10006, "VENDORS/MICSFT/MAC/GREEK.TXT", 0, "Mac Greek" ], [ 10006, "VENDORS/MICSFT/MAC/GREEK.TXT", 0, "Mac Greek" ],
[ 10007, "VENDORS/MICSFT/MAC/CYRILLIC.TXT", 0, "Mac Cyrillic" ], [ 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" ], [ 10029, "VENDORS/MICSFT/MAC/LATIN2.TXT", 0, "Mac Latin 2" ],
[ 10079, "VENDORS/MICSFT/MAC/ICELAND.TXT", 0, "Mac Icelandic" ], [ 10079, "VENDORS/MICSFT/MAC/ICELAND.TXT", 0, "Mac Icelandic" ],
[ 10081, "VENDORS/MICSFT/MAC/TURKISH.TXT", 0, "Mac Turkish" ], [ 10081, "VENDORS/MICSFT/MAC/TURKISH.TXT", 0, "Mac Turkish" ],
......
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