Hi,
Using the e.g. in Pelles C Help:
1 VERSIONINFO
FILEVERSION 2,50,0,0
PRODUCTVERSION 2,50,0,0
FILEOS VOS_DOS_WINDOWS32
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "040904B0" /* U.S. English, Unicode */
{
VALUE "CompanyName", "More Bucks Than Always\0"
VALUE "FileDescription", "One really cool application\0"
VALUE "FileVersion", "2.50\0"
VALUE "LegalCopyright", "Copyright (c) More Bucks Than Always 2007\0"
VALUE "ProductName", "Cool application for professionals\0"
VALUE "ProductVersion", "2.50\0"
VALUE "InternalName", "coolapp\0"
VALUE "OriginalFilename", "coolapp.exe\0"
}
BLOCK "041D04B0" /* Swedish, Unicode */
{
/* as above, in Swedish... */
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x409, 0x4B0 /* U.S. English, Unicode */
VALUE "Translation", 0x41D, 0x4B0 /* Swedish, Unicode */
}
}
I only see three fields in my tooltip:
Description:
Company:
File Version:
What is causing the other fields to be missing?
I know there are registry entries for the tooltip on a particular filetype, but have no idea if this should be a factor in the Pelles C build (hope not, as the tooltip would be specific-device dependent).
I have looked at winver.h, and I am afraid it isn't helping *me*.
Tx,
Ed