This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project. See the Cygwin home page for more information.
Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Limits of windres


Hello,

are there any documentation about limits of windres? I have typically four
kinds of ressources: Bitmaps, Icons, Cursors and VersionInfo, but my
VersionInfo is not compiled unless some parts are #ifdef'd:

LANGUAGE LANG_NEUTRAL, SUBLANG_DEFAULT

1 VERSIONINFO
 FILEVERSION 4, 3, 0, 0
#ifndef __MINGW32__
 PRODUCTVERSION 4, 3, 0
#endif
 FILEFLAGSMASK 0x3fL
 FILEFLAGS 0x0L
 FILEOS VOS_NT_WINDOWS32
 FILETYPE VFT_DLL
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
#ifndef __MINGW32__
        BLOCK "040704b0"
        BEGIN
            VALUE "Comments", "Deutsch"
        END
#endif
        BLOCK "040904b0"
        BEGIN
            VALUE "Comments", "English"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation",
#ifndef __MINGW32__
            0x407, 1200
#endif
            0x409, 1200
    END
END


Seems that the current version does not support the PRODUCTVERSION and
multiple language tables ?

Greetings Jörg

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com