1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#include <winver.h>
#include <windows.h> // include for version info constants
1 VERSIONINFO
FILEVERSION 0,1,1,3
PRODUCTVERSION 0,1,1,3
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "240904E4"
{
VALUE "CompanyName", ""
VALUE "FileVersion", "1"
VALUE "FileDescription", ""
VALUE "InternalName", "Jeopardy"
VALUE "LegalCopyright", ""
VALUE "LegalTrademarks", ""
VALUE "OriginalFilename", "Jeopardy.cpp"
VALUE "ProductName", "Jeopardy"
VALUE "ProductVersion", "1"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x2409, 1252
}
}
|