6

プロジェクトにリソーススクリプトを使用したい。プロジェクトはMinGWを使用してコンパイルされます。

resource.rc:

#include <windows.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION     1,0,0,0
PRODUCTVERSION  1,0,0,0
//FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
//FILEFLAGS       VER_PRIVATEBUILD
FILEOS          VOS_NT_WINDOWS32
FILETYPE        VFT_APP
FILESUBTYPE     VFT2_UNKNOWN
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904E4"
        BEGIN
            //VALUE "Comments",         ""
            VALUE "CompanyName",      "Company"
            VALUE "FileDescription",  "Test for the resource.rc"
            VALUE "FileVersion",      "1.0"
            VALUE "InternalName",     "ResourceTest"
            //VALUE "LegalCopyright",   ""
            //VALUE "LegalTrademarks1", ""
            //VALUE "LegalTrademarks2", ""
            VALUE "OriginalFilename", "ResourceTest.exe"
            VALUE "PrivateBuild",     "Built by me." //With VS_FF_PRIVATEBUILD
            VALUE "ProductName",      "resource.rc Test"
            VALUE "ProductVersion",   "1.0"
        END
    END

    BLOCK "VarFileInfo"
    BEGIN
        /* 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

    END
END

を使用してコンパイルし、windres -o Resource.o resource.rcとリンクしgcc -mwindows -o Resourcetest.exe Launcher.o Resource.oます。私のコンソール出力:

windres -o Resource.o resource.rc
windres: resource.rc:39: syntax error
make: *** [Resource.o] Error 1

39行目は2番目の翻訳行です:VALUE "Translation", 0x409, 1252。しかし、MSDNを参照すると、これは正しいです。しかし、何が悪かったのでしょうか。

4

1 に答える 1

8

ブロックに複数のVALUE "Translation"行を含めることはできません。VarFileInfo代わりに、コメントにあるように、1つ以上のWORD、WORDペアを含む1行が必要です。

例えば、

VALUE "Translation", 0x407, 1252, 0x409, 1252
于 2013-01-08T21:02:33.397 に答える