php-src/win32/cp_enc_map_gen.c
Anatol Belski 3d3f11ede4 Fixed the UTF-8 and long path support in the streams on Windows.
Since long the default PHP charset is UTF-8, however the Windows part is
out of step with this important point. The current implementation in PHP
doesn't technically permit to handle UTF-8 filepath and several other
things. Till now, only the ANSI compatible APIs are being used. Here is more
about it

https://msdn.microsoft.com/en-us/library/windows/desktop/dd317752%28v=vs.85%29.aspx

The patch fixes not only issues with multibyte filenames under
incompatible codepages, but indirectly also issues with some other multibyte
encodings like BIG5, Shift-JIS, etc. by providing a clean way to access
filenames in UTF-8. Below is a small list of issues from the bug tracker,
that are getting fixed:

https://bugs.php.net/63401
https://bugs.php.net/41199
https://bugs.php.net/50203
https://bugs.php.net/71509
https://bugs.php.net/64699
https://bugs.php.net/64506
https://bugs.php.net/30195
https://bugs.php.net/65358
https://bugs.php.net/61315
https://bugs.php.net/70943
https://bugs.php.net/70903
https://bugs.php.net/63593
https://bugs.php.net/54977
https://bugs.php.net/54028
https://bugs.php.net/43148
https://bugs.php.net/30730
https://bugs.php.net/33350
https://bugs.php.net/35300
https://bugs.php.net/46990
https://bugs.php.net/61309
https://bugs.php.net/69333
https://bugs.php.net/45517
https://bugs.php.net/70551
https://bugs.php.net/50197
https://bugs.php.net/72200
https://bugs.php.net/37672

Yet more related tickets can for sure be found - on bugs.php.net, Stackoverflow
and Github. Some of the bugs are pretty recent, some descend to early
2000th, but  the user comments in there last even till today. Just for example,
bug #30195 was opened in 2004, the latest comment in there was made in 2014. It
is certain, that these bugs descend not only to pure PHP use cases, but get also
redirected from the popular PHP based projects. Given the modern systems (and
those supported by PHP) are always based on NTFS, there is no excuse to keep
these issues unresolved.

The internalization approach on Windows is in many ways different from
UNIX and Linux, while it supports and is based on Unicode. It depends on the
current system code page, APIs used and exact kind how the binary was compiled
The locale doesn't affect the way Unicode or ANSI API work. PHP in particular
is being compiled without _UNICODE defined and this is conditioned by the
way we handle strings. Here is more about it

https://msdn.microsoft.com/en-us/library/tsbaswba.aspx

However, with any system code page ANSI functions automatically convert
paths to UTF-16. Paths in some encodings incompatible with the
current system code page, won't work correctly with ANSI APIs. PHP
till now only uses the ANSI Windows APIs.

For example, on a system with the current code page 1252, the paths
in cp1252 are supported and transparently converted to UTF-16 by the
ANSI functions. Once one wants to handle a filepath encoded with cp932 on
that particular system, an ANSI or a POSIX compatible function used in
PHP will produce an erroneous result. When trying to convert that cp932 path
to UTF-8 and passing to the ANSI functions, an ANSI function would
likely interpret the UTF-8 string as some string in the current code page and
create a filepath that represents every single byte of the UTF-8 string.
These behaviors are not only broken but also disregard the documented
INI settings.

This patch solves the issies with the multibyte paths on Windows by
intelligently enforcing the usage of the Unicode aware APIs. For
functions expect Unicode (fe CreateFileW, FindFirstFileW, etc.), arguments
will be converted to UTF-16 wide chars. For functions returning Unicode
aware data (fe GetCurrentDirectoryW, etc.), resulting wide string is
converted back to char's depending on the current PHP charset settings,
either to the current ANSI codepage (this is the behavior prior to this patch)
or to UTF-8 (the default behavior).

In a particular case, users might have to explicitly set
internal_encoding or default_charset, if filenames in ANSI codepage are
necessary. Current tests show no regressions and witness that this will be an
exotic case, the current default UTF-8 encoding is compatible with any
supported system. The dependency libraries are long switching to Unicode APIs,
so some tests were also added for extensions not directly related to streams.
At large, the patch brings over 150 related tests into the core. Those target
and was run on various environments with European, Asian, etc. codepages.
General PHP frameworks was tested and showed no regressions.

The impact on the current C code base is low, the most places affected
are the Windows only places in the three files tsrm_win32.c, zend_virtual_cwd.c
and plain_wrapper.c. The actual implementation of the most of the wide
char supporting functionality is in win32/ioutil.* and win32/codepage.*,
several  low level functionsare extended in place to avoid reimplementation for
now. No performance impact was sighted. As previously mentioned, the ANSI APIs
used prior the patch perform Unicode conversions internally. Using the
Unicode  APIs directly while doing custom conversions just retains the status
quo. The ways to optimize it are open (fe. by implementing caching for the
strings converted to wide variants).

The long path implementation is user transparent. If a path exceeds the
length of _MAX_PATH, it'll be automatically prefixed with \\?\. The MAXPATHLEN
is set to 2048 bytes.

Appreciation to Pierre Joye, Matt Ficken, @algo13 and others for tips, ideas
and testing.

Thanks.
2016-06-20 12:45:39 +02:00

251 lines
14 KiB
C

#include <stdio.h>
#include <windows.h>
struct cp {
DWORD id;
char *name;
char *enc;
char *desc;
};
static const struct cp cp_map[] = {
{ 37, "IBM037", "", "IBM EBCDIC US-Canada" },
{ 437, "IBM437", "", "OEM United States" },
{ 500, "IBM500", "", "IBM EBCDIC International" },
{ 708, "ASMO-708", "", "Arabic (ASMO 708)" },
{ 709, "", "", "Arabic (ASMO-449+, BCON V4)" },
{ 710, "", "", "Arabic - Transparent Arabic" },
{ 720, "DOS-720", "", "Arabic (Transparent ASMO); Arabic (DOS)" },
{ 737, "ibm737", "", "OEM Greek (formerly 437G); Greek (DOS)" },
{ 775, "ibm775", "", "OEM Baltic; Baltic (DOS)" },
{ 850, "ibm850", "850|CP850|IBM850|CSPC850MULTILINGUAL", "OEM Multilingual Latin 1; Western European (DOS)" },
{ 852, "ibm852", "", "OEM Latin 2; Central European (DOS)" },
{ 855, "IBM855", "", "OEM Cyrillic (primarily Russian)" },
{ 857, "ibm857", "", "OEM Turkish; Turkish (DOS)" },
{ 858, "IBM00858", "", "OEM Multilingual Latin 1 + Euro symbol" },
{ 860, "IBM860", "", "OEM Portuguese; Portuguese (DOS)" },
{ 861, "ibm861", "", "OEM Icelandic; Icelandic (DOS)" },
{ 862, "DOS-862", "862|CP862|IBM862|CSPC862LATINHEBREW", "OEM Hebrew; Hebrew (DOS)" },
{ 863, "IBM863", "", "OEM French Canadian; French Canadian (DOS)" },
{ 864, "IBM864", "", "OEM Arabic; Arabic (864)" },
{ 865, "IBM865", "", "OEM Nordic; Nordic (DOS)" },
{ 866, "cp866", "866|CP866|IBM866|CSIBM866", "OEM Russian; Cyrillic (DOS)" },
{ 869, "ibm869", "", "OEM Modern Greek; Greek, Modern (DOS)" },
{ 870, "IBM870", "", "IBM EBCDIC Multilingual/ROECE (Latin 2); IBM EBCDIC Multilingual Latin 2" },
{ 874, "windows-874", "CP874", "ANSI/OEM Thai (ISO 8859-11); Thai (Windows)" },
{ 875, "cp875", "", "IBM EBCDIC Greek Modern" },
{ 932, "shift_jis", "CP932|SHIFT_JIS|MS_KANJI|CSSHIFTJIS", "ANSI/OEM Japanese; Japanese (Shift-JIS)" },
{ 936, "gb2312", "GB2312|GBK|CP936|MS936|WINDOWS-936", "ANSI/OEM Simplified Chinese (PRC, Singapore); Chinese Simplified (GB2312)" },
{ 949, "ks_c_5601-1987", "CP949|UHC", "ANSI/OEM Korean (Unified Hangul Code)" },
{ 950, "big5", "CP950|BIG-5", "ANSI/OEM Traditional Chinese (Taiwan; Hong Kong SAR, PRC); Chinese Traditional (Big5)" },
{ 1026, "IBM1026", "", "IBM EBCDIC Turkish (Latin 5)" },
{ 1047, "IBM01047", "", "IBM EBCDIC Latin 1/Open System" },
{ 1140, "IBM01140", "", "IBM EBCDIC US-Canada (037 + Euro symbol); IBM EBCDIC (US-Canada-Euro)" },
{ 1141, "IBM01141", "", "IBM EBCDIC Germany (20273 + Euro symbol); IBM EBCDIC (Germany-Euro)" },
{ 1142, "IBM01142", "", "IBM EBCDIC Denmark-Norway (20277 + Euro symbol); IBM EBCDIC (Denmark-Norway-Euro)" },
{ 1143, "IBM01143", "", "IBM EBCDIC Finland-Sweden (20278 + Euro symbol); IBM EBCDIC (Finland-Sweden-Euro)" },
{ 1144, "IBM01144", "", "IBM EBCDIC Italy (20280 + Euro symbol); IBM EBCDIC (Italy-Euro)" },
{ 1145, "IBM01145", "", "IBM EBCDIC Latin America-Spain (20284 + Euro symbol); IBM EBCDIC (Spain-Euro)" },
{ 1146, "IBM01146", "", "IBM EBCDIC United Kingdom (20285 + Euro symbol); IBM EBCDIC (UK-Euro)" },
{ 1147, "IBM01147", "", "IBM EBCDIC France (20297 + Euro symbol); IBM EBCDIC (France-Euro)" },
{ 1148, "IBM01148", "", "IBM EBCDIC International (500 + Euro symbol); IBM EBCDIC (International-Euro)" },
{ 1149, "IBM01149", "", "IBM EBCDIC Icelandic (20871 + Euro symbol); IBM EBCDIC (Icelandic-Euro)" },
{ 1200, "utf-16", "", "Unicode UTF-16, little endian byte order (BMP of ISO 10646); available only to managed applications" },
{ 1201, "unicodeFFFE", "", "Unicode UTF-16, big endian byte order; available only to managed applications" },
{ 1250, "windows-1250", "CP1250|MS-EE|WINDOWS-1250", "ANSI Central European; Central European (Windows)" },
{ 1251, "windows-1251", "CP1251|MS-CYRL|WINDOWS-1251", "ANSI Cyrillic; Cyrillic (Windows)" },
{ 1252, "windows-1252", "CP1252|MS-ANSI|WINDOWS-1252", "ANSI Latin 1; Western European (Windows)" },
{ 1253, "windows-1253", "CP1253|MS-GREEK|WINDOWS-1253", "ANSI Greek; Greek (Windows)" },
{ 1254, "windows-1254", "CP1254|MS-TURK|WINDOWS-1254", "ANSI Turkish; Turkish (Windows)" },
{ 1255, "windows-1255", "CP1255|MS-HEBR|WINDOWS-1255", "ANSI Hebrew; Hebrew (Windows)" },
{ 1256, "windows-1256", "CP1256|MS-ARAB|WINDOWS-1256", "ANSI Arabic; Arabic (Windows)" },
{ 1257, "windows-1257", "CP1257|WINBALTRIM|WINDOWS-1257", "ANSI Baltic; Baltic (Windows)" },
{ 1258, "windows-1258", "CP1258|WINDOWS-1258", "ANSI/OEM Vietnamese; Vietnamese (Windows)" },
{ 1361, "Johab", "CP1361|JOHAB", "Korean (Johab)" },
{ 10000, "macintosh", "MAC|MACINTOSH|MACROMAN|CSMACINTOSH", "MAC Roman; Western European (Mac)" },
{ 10001, "x-mac-japanese", "", "Japanese (Mac)" },
{ 10002, "x-mac-chinesetrad", "", "MAC Traditional Chinese (Big5); Chinese Traditional (Mac)" },
{ 10003, "x-mac-korean", "", "Korean (Mac)" },
{ 10004, "x-mac-arabic", "MACARABIC", "Arabic (Mac)" },
{ 10005, "x-mac-hebrew", "MACHEBREW", "Hebrew (Mac)" },
{ 10006, "x-mac-greek", "MACGREEK", "Greek (Mac)" },
{ 10007, "x-mac-cyrillic", "MACCYRILLIC", "Cyrillic (Mac)" },
{ 10008, "x-mac-chinesesimp", "", "MAC Simplified Chinese (GB 2312); Chinese Simplified (Mac)" },
{ 10010, "x-mac-romanian", "MACROMANIA", "Romanian (Mac)" },
{ 10017, "x-mac-ukrainian", "MACUKRAINE", "Ukrainian (Mac)" },
{ 10021, "x-mac-thai", "MACTHAI", "Thai (Mac)" },
{ 10029, "x-mac-ce", "MACCENTRALEUROPE", "MAC Latin 2; Central European (Mac)" },
{ 10079, "x-mac-icelandic", "MACICELAND", "Icelandic (Mac)" },
{ 10081, "x-mac-turkish", "MACTURKISH", "Turkish (Mac)" },
{ 10082, "x-mac-croatian", "MACCROATIAN", "Croatian (Mac)" },
{ 12000, "utf-32", "", "Unicode UTF-32, little endian byte order; available only to managed applications" },
{ 12001, "utf-32BE", "", "Unicode UTF-32, big endian byte order; available only to managed applications" },
{ 20000, "x-Chinese_CNS", "", "CNS Taiwan; Chinese Traditional (CNS)" },
{ 20001, "x-cp20001", "", "TCA Taiwan" },
{ 20002, "x_Chinese-Eten", "", "Eten Taiwan; Chinese Traditional (Eten)" },
{ 20003, "x-cp20003", "", "IBM5550 Taiwan" },
{ 20004, "x-cp20004", "", "TeleText Taiwan" },
{ 20005, "x-cp20005", "", "Wang Taiwan" },
{ 20105, "x-IA5", "", "IA5 (IRV International Alphabet No. 5, 7-bit); Western European (IA5)" },
{ 20106, "x-IA5-German", "", "IA5 German (7-bit)" },
{ 20107, "x-IA5-Swedish", "", "IA5 Swedish (7-bit)" },
{ 20108, "x-IA5-Norwegian", "", "IA5 Norwegian (7-bit)" },
{ 20127, "us-ascii", "", "US-ASCII (7-bit)" },
{ 20261, "x-cp20261", "", "T.61" },
{ 20269, "x-cp20269", "", "ISO 6937 Non-Spacing Accent" },
{ 20273, "IBM273", "", "IBM EBCDIC Germany" },
{ 20277, "IBM277", "", "IBM EBCDIC Denmark-Norway" },
{ 20278, "IBM278", "", "IBM EBCDIC Finland-Sweden" },
{ 20280, "IBM280", "", "IBM EBCDIC Italy" },
{ 20284, "IBM284", "", "IBM EBCDIC Latin America-Spain" },
{ 20285, "IBM285", "", "IBM EBCDIC United Kingdom" },
{ 20290, "IBM290", "", "IBM EBCDIC Japanese Katakana Extended" },
{ 20297, "IBM297", "", "IBM EBCDIC France" },
{ 20420, "IBM420", "", "IBM EBCDIC Arabic" },
{ 20423, "IBM423", "", "IBM EBCDIC Greek" },
{ 20424, "IBM424", "", "IBM EBCDIC Hebrew" },
{ 20833, "x-EBCDIC-KoreanExtended", "", "IBM EBCDIC Korean Extended" },
{ 20838, "IBM-Thai", "", "IBM EBCDIC Thai" },
{ 20866, "koi8-r", "KOI8-R|CSKOI8R", "Russian (KOI8-R); Cyrillic (KOI8-R)" },
{ 20871, "IBM871", "", "IBM EBCDIC Icelandic" },
{ 20880, "IBM880", "", "IBM EBCDIC Cyrillic Russian" },
{ 20905, "IBM905", "", "IBM EBCDIC Turkish" },
{ 20924, "IBM00924", "", "IBM EBCDIC Latin 1/Open System (1047 + Euro symbol)" },
{ 20932, "EUC-JP", "EUC-JP|EUCJP|EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE|CSEUCPKDFMTJAPANESE", "Japanese (JIS 0208-1990 and 0212-1990)" },
{ 20936, "x-cp20936", "", "Simplified Chinese (GB2312); Chinese Simplified (GB2312-80)" },
{ 20949, "x-cp20949", "", "Korean Wansung" },
{ 21025, "cp1025", "", "IBM EBCDIC Cyrillic Serbian-Bulgarian" },
{ 21027, "", "", "(deprecated)" },
{ 21866, "koi8-u", "KOI8-U", "Ukrainian (KOI8-U); Cyrillic (KOI8-U)" },
{ 28591, "iso-8859-1", "CP819|IBM819|ISO-8859-1|ISO-IR-100|ISO8859-1|ISO_8859-1|ISO_8859-1:1987|L1|LATIN1|CSISOLATIN1", "ISO 8859-1 Latin 1; Western European (ISO)" },
{ 28592, "iso-8859-2", "ISO-8859-2|ISO-IR-101|ISO8859-2|ISO_8859-2|ISO_8859-2:1987|L2|LATIN2|CSISOLATIN2", "ISO 8859-2 Central European; Central European (ISO)" },
{ 28593, "iso-8859-3", "ISO-8859-3|ISO-IR-109|ISO8859-3|ISO_8859-3|ISO_8859-3:1988|L3|LATIN3|CSISOLATIN3", "ISO 8859-3 Latin 3" },
{ 28594, "iso-8859-4", "ISO-8859-4|ISO-IR-110|ISO8859-4|ISO_8859-4|ISO_8859-4:1988|L4|LATIN4|CSISOLATIN4", "ISO 8859-4 Baltic" },
{ 28595, "iso-8859-5", "CYRILLIC|ISO-8859-5|ISO-IR-144|ISO8859-5|ISO_8859-5|ISO_8859-5:1988|CSISOLATINCYRILLIC", "ISO 8859-5 Cyrillic" },
{ 28596, "iso-8859-6", "ARABIC|ASMO-708|ECMA-114|ISO-8859-6|ISO-IR-127|ISO8859-6|ISO_8859-6|ISO_8859-6:1987|CSISOLATINARABIC", "ISO 8859-6 Arabic" },
{ 28597, "iso-8859-7", "ECMA-118|ELOT_928|GREEK|GREEK8|ISO-8859-7|ISO-IR-126|ISO8859-7|ISO_8859-7|ISO_8859-7:1987|ISO_8859-7:2003|CSISOLATINGREEK", "ISO 8859-7 Greek" },
{ 28598, "iso-8859-8", "HEBREW|ISO-8859-8|ISO-IR-138|ISO8859-8|ISO_8859-8|ISO_8859-8:1988|CSISOLATINHEBREW", "ISO 8859-8 Hebrew; Hebrew (ISO-Visual)" },
{ 28599, "iso-8859-9", "ISO-8859-9|ISO-IR-148|ISO8859-9|ISO_8859-9|ISO_8859-9:1989|L5|LATIN5|CSISOLATIN5", "ISO 8859-9 Turkish" },
{ 28603, "iso-8859-13", "ISO-8859-13|ISO-IR-179|ISO8859-13|ISO_8859-13|L7|LATIN7", "ISO 8859-13 Estonian" },
{ 28605, "iso-8859-15", "ISO-8859-15|ISO-IR-203|ISO8859-15|ISO_8859-15|ISO_8859-15:1998|LATIN-9", "ISO 8859-15 Latin 9" },
{ 29001, "x-Europa", "", "Europa 3" },
{ 38598, "iso-8859-8-i", "", "ISO 8859-8 Hebrew; Hebrew (ISO-Logical)" },
{ 50220, "iso-2022-jp", "CP50220", "ISO 2022 Japanese with no halfwidth Katakana; Japanese (JIS)" },
{ 50221, "csISO2022JP", "CP50221", "ISO 2022 Japanese with halfwidth Katakana; Japanese (JIS-Allow 1 byte Kana)" },
{ 50222, "iso-2022-jp", "ISO-2022-JP|CP50222", "ISO 2022 Japanese JIS X 0201-1989; Japanese (JIS-Allow 1 byte Kana - SO/SI)" },
{ 50225, "iso-2022-kr", "ISO-2022-KR|CSISO2022KR", "ISO 2022 Korean" },
{ 50227, "x-cp50227", "", "ISO 2022 Simplified Chinese; Chinese Simplified (ISO 2022)" },
{ 50229, "", "", "ISO 2022 Traditional Chinese" },
{ 50930, "", "", "EBCDIC Japanese (Katakana) Extended" },
{ 50931, "", "", "EBCDIC US-Canada and Japanese" },
{ 50933, "", "", "EBCDIC Korean Extended and Korean" },
{ 50935, "", "", "EBCDIC Simplified Chinese Extended and Simplified Chinese" },
{ 50936, "", "", "EBCDIC Simplified Chinese" },
{ 50937, "", "", "EBCDIC US-Canada and Traditional Chinese" },
{ 50939, "", "", "EBCDIC Japanese (Latin) Extended and Japanese" },
{ 51932, "euc-jp", "", "EUC Japanese" },
{ 51936, "EUC-CN", "", "EUC Simplified Chinese; Chinese Simplified (EUC)" },
{ 51949, "euc-kr", "EUC-KR|EUCKR|CSEUCKR", "EUC Korean" },
{ 51950, "", "", "EUC Traditional Chinese" },
{ 52936, "hz-gb-2312", "HZ|HZ-GB-2312", "HZ-GB2312 Simplified Chinese; Chinese Simplified (HZ)" },
{ 54936, "GB18030", "GB18030|CSGB18030", "Windows XP and later: GB18030 Simplified Chinese (4 byte); Chinese Simplified (GB18030)" },
{ 57002, "x-iscii-de", "", "ISCII Devanagari" },
{ 57003, "x-iscii-be", "", "ISCII Bangla" },
{ 57004, "x-iscii-ta", "", "ISCII Tamil" },
{ 57005, "x-iscii-te", "", "ISCII Telugu" },
{ 57006, "x-iscii-as", "", "ISCII Assamese" },
{ 57007, "x-iscii-or", "", "ISCII Odia" },
{ 57008, "x-iscii-ka", "", "ISCII Kannada" },
{ 57009, "x-iscii-ma", "", "ISCII Malayalam" },
{ 57010, "x-iscii-gu", "", "ISCII Gujarati" },
{ 57011, "x-iscii-pa", "", "ISCII Punjabi" },
{ 65000, "utf-7", "UTF-7", "Unicode (UTF-7)" },
{ 65001, "utf-8", "UTF-8", "Unicode (UTF-8)" },
{ 0, NULL, NULL },
};
int
main(int argc, char **argv)
{
DWORD cp;
CPINFOEX info;
struct cp *cur;
int rnd = 0;
/*if (argc < 2) {
printf("Usage: cpinfoex cp_id\n");
return 0;
}
cp = atoi(argv[1]);*/
#if 0
/* Ref:
http://www.iana.org/assignments/character-sets/character-sets.xhtml
https://msdn.microsoft.com/en-us/goglobal/bb964653
http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/
*/
#endif
/*
struct php_win32_cp {
DWORD id;
DWORD to_w_fl;
DWORD from_w_fl;
DWORD char_size;
char *name;
char *enc;
char *desc;
};
*/
/*printf("struct php_win32_cp {\n\tDWORD id;\n\tDWORD to_w_fl;\n\tDWORD from_w_fl;\n\tDWORD char_size;\n\tchar *name;\n\tchar *enc;\n\tchar *desc;\n};\n\n"); */
printf("/* Autogenerated file. Update cp_enc_map_gen.c and regen like \n"
" cp_enc_map_gen.exe > cp_enc_map.c \n*/\n\n");
printf("static const struct php_win32_cp php_win32_cp_map[] = {");
cur = &cp_map[0];
#ifdef ORDER_IT
while (rnd <= 2 && ++rnd && (cur = &cp_map[0]))
#endif
while (cur->desc != NULL) {
if (!IsValidCodePage(cur->id)) {
#ifdef ORDER_IT
if (2 == rnd)
#endif
printf("\t/* %u is invalid */\n", cur->id);
//printf("#if 0\n\t{ %u, 0, \"%s\", \"%s\" },\n#endif\n", cur->id, cur->name, cur->desc);
} else if (GetCPInfoEx(cur->id, 0, &info)) {
DWORD to_w_fl = 0, from_w_fl = 0;
if (65001U == cur->id || 54936U == cur->id) {
from_w_fl = WC_ERR_INVALID_CHARS;
to_w_fl = MB_ERR_INVALID_CHARS;
}
//printf("\t{ %u, %u, \"%s\", \"%s\" },\n", cur->id, info.MaxCharSize, cur->name, cur->desc);
if (!cur->enc[0]) {
#ifdef ORDER_IT
if (2 == rnd)
#endif
//printf("\t/* { %u, %u, \"%s\", NULL, \"%s\" }, */\n", info.CodePage, info.MaxCharSize, cur->name, info.CodePageName);
printf("\t{ %u, %u, %u, %u, \"%s\", NULL, \"%s\" },\n", info.CodePage, to_w_fl, from_w_fl, info.MaxCharSize, cur->name, info.CodePageName);
} else {
#ifdef ORDER_IT
if (1 == rnd)
#endif
printf("\t{ %u, %u, %u, %u, \"%s\", \"%s\", \"%s\" },\n", info.CodePage, to_w_fl, from_w_fl, info.MaxCharSize, cur->name, cur->enc, info.CodePageName);
}
}
cur++;
}
printf("};\n\n");
return 0;
}