Sync to Wine-20050211
Oleh R. Nykyforchyn <nick@pu.if.ua>
- Ukrainian codepage 21866 added and respective files corrected. Two
  keyboard layouts (for Ukrainian and Russian) added.
Modified: trunk/reactos/lib/unicode/Makefile.in
Added: trunk/reactos/lib/unicode/c_21866.c
Modified: trunk/reactos/lib/unicode/cpmap.pl
Modified: trunk/reactos/lib/unicode/cptable.c

Modified: trunk/reactos/lib/unicode/Makefile.in
--- trunk/reactos/lib/unicode/Makefile.in	2005-02-14 15:04:09 UTC (rev 13561)
+++ trunk/reactos/lib/unicode/Makefile.in	2005-02-14 15:55:32 UTC (rev 13562)
@@ -53,6 +53,7 @@
 	10081 \
 	20866 \
 	20932 \
+	21866 \
 	28591 \
 	28592 \
 	28593 \

Copied: trunk/reactos/lib/unicode/c_21866.c (from rev 13561, vendor/wine/libs/unicode/current/c_21866.c)
Property changes on: trunk/reactos/lib/unicode/c_21866.c ___________________________________________________________________ Name: svn:keywords   + Author Date Id Revision Name: svn:eol-style   + native
Modified: trunk/reactos/lib/unicode/cpmap.pl
--- trunk/reactos/lib/unicode/cpmap.pl	2005-02-14 15:04:09 UTC (rev 13561)
+++ trunk/reactos/lib/unicode/cpmap.pl	2005-02-14 15:55:32 UTC (rev 13562)
@@ -82,6 +82,7 @@
     [ 10081, "VENDORS/MICSFT/MAC/TURKISH.TXT",    "Mac Turkish" ],
     [ 20866, "VENDORS/MISC/KOI8-R.TXT",           "Russian KOI8" ],
     [ 20932, "OBSOLETE/EASTASIA/JIS/JIS0208.TXT", "EUC-JP" ],
+    [ 21866, "VENDORS/MISC/KOI8-U.TXT",           "Ukrainian KOI8" ],
     [ 28591, "ISO8859/8859-1.TXT",                "ISO 8859-1 Latin 1" ],
     [ 28592, "ISO8859/8859-2.TXT",                "ISO 8859-2 Latin 2 (East European)" ],
     [ 28593, "ISO8859/8859-3.TXT",                "ISO 8859-3 Latin 3 (South European)" ],

Modified: trunk/reactos/lib/unicode/cptable.c
--- trunk/reactos/lib/unicode/cptable.c	2005-02-14 15:04:09 UTC (rev 13561)
+++ trunk/reactos/lib/unicode/cptable.c	2005-02-14 15:55:32 UTC (rev 13562)
@@ -69,6 +69,7 @@
 extern union cptable cptable_10081;
 extern union cptable cptable_20866;
 extern union cptable cptable_20932;
+extern union cptable cptable_21866;
 extern union cptable cptable_28591;
 extern union cptable cptable_28592;
 extern union cptable cptable_28593;
@@ -84,7 +85,7 @@
 extern union cptable cptable_28605;
 extern union cptable cptable_28606;
 
-static const union cptable * const cptables[59] =
+static const union cptable * const cptables[60] =
 {
     &cptable_037,
     &cptable_424,
@@ -131,6 +132,7 @@
     &cptable_10081,
     &cptable_20866,
     &cptable_20932,
+    &cptable_21866,
     &cptable_28591,
     &cptable_28592,
     &cptable_28593,