zoukankan      html  css  js  c++  java
  • Windows资源文件里VarFileInfo的Translation(EXE的语言描述信息)

            /* 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
    1252 Multilingual

    我不明白的是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

  • 相关阅读:
    Java核心技术Java程序设计
    Mac下查看 Java 安装目录位置和安装数量
    Intellij IDEA快捷键与使用小技巧
    Java 8 新特性 用 Collectors 对 List 去重
    onInterceptTouchEvent()与onTouchEvent()的机制
    Android 开发之多线程处理、Handler
    安卓中使用XmlPullParser解析xml文件
    监控部署nagios+snmp
    阿里RDS数据库 全量备份恢复到本地MYSQL
    20120412
  • 原文地址:https://www.cnblogs.com/findumars/p/4918296.html
Copyright © 2011-2022 走看看