/* The following line should only be modified for localized versions.     */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a language,codepage combination supported by the file. */
/* */
/* For example, a file might have values "0x409,1252" indicating that it */
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
VALUE "Translation", 0x407, 1252 //German
VALUE "Translation", 0x409, 1252 //U.S. English

http://stackoverflow.com/questions/14221918/win32-resource-file-multiple-translations

-------------------------------------------------------------------------------------

https://msdn.microsoft.com/en-us/library/windows/desktop/aa381057(v=vs.85).aspx

1200 Unicode
1252Multilingual

我不明白的是1200和1252有什么区别?

自问自答:1252好像是代表西方字符Western European (Windows)

-------------------------------------------------------------------------------------

2.6.5. ANSI字符编码和Windows 1252

Windows为了支持英语和西欧字符,自己设计了一个编码,对应的在Code Page号是1252,被称为Windows 1252。

Windows 1252的设计,是参考了ANSI草案(ANSI Draft)。

而ANSI draft后来发展成为正式的国际标准:ISO 8859-1

即,Windows 1252是在其成为正式标准ISO 8859-1之前而设计的,因此很容易理解,Windows 1252和ISO 8859-1不是完全等同的。

下面就来简要说说两者的区别。

http://www.crifan.com/files/doc/docbook/char_encoding/release/html/char_encoding.html#ansi_and_windows_1252

04-14 07:40