12345678910111213141516171819202122232425262728293031323334353637 |
- // Setup version resource
- // Compiled with RC.EXE from the Platform SDK
- //
- // Note: The \0's in the values are to make this resource script compatible
- // with Borland's BRCC32 as well. BRCC32 does not automatically null-terminate
- // string values like Microsoft's RC does, resulting in garbage characters on
- // Explorer's Version tab (on Windows 2000) if \0's aren't included.
- 1 VERSIONINFO
- FILEVERSION 51,1052,0
- PRODUCTVERSION 0,0,0,0
- FILEFLAGSMASK 0x3fL
- FILEFLAGS 0x0L
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
- BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "000004b0"
- BEGIN
- VALUE "FileDescription", "Setup/Uninstall\0"
- VALUE "FileVersion", "51.1052.0.0\0"
- // NOTE: Be sure to keep FILEVERSION in sync!
- VALUE "Comments", "This installation was built with Inno Setup.\0"
- VALUE "CompanyName", " \0"
- VALUE "LegalCopyright", " \0"
- VALUE "OriginalFileName", " \0"
- VALUE "ProductName", " \0"
- VALUE "ProductVersion", " \0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x0, 1200
- END
- END
|