Setup.version.rc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Setup version resource
  2. // Compiled with RC.EXE from the Platform SDK
  3. //
  4. // Note: The \0's in the values are to make this resource script compatible
  5. // with Borland's BRCC32 as well. BRCC32 does not automatically null-terminate
  6. // string values like Microsoft's RC does, resulting in garbage characters on
  7. // Explorer's Version tab (on Windows 2000) if \0's aren't included.
  8. 1 VERSIONINFO
  9. FILEVERSION 51,1052,0
  10. PRODUCTVERSION 0,0,0,0
  11. FILEFLAGSMASK 0x3fL
  12. FILEFLAGS 0x0L
  13. FILEOS 0x4L
  14. FILETYPE 0x1L
  15. FILESUBTYPE 0x0L
  16. BEGIN
  17. BLOCK "StringFileInfo"
  18. BEGIN
  19. BLOCK "000004b0"
  20. BEGIN
  21. VALUE "FileDescription", "Setup/Uninstall\0"
  22. VALUE "FileVersion", "51.1052.0.0\0"
  23. // NOTE: Be sure to keep FILEVERSION in sync!
  24. VALUE "Comments", "This installation was built with Inno Setup.\0"
  25. VALUE "CompanyName", " \0"
  26. VALUE "LegalCopyright", " \0"
  27. VALUE "OriginalFileName", " \0"
  28. VALUE "ProductName", " \0"
  29. VALUE "ProductVersion", " \0"
  30. END
  31. END
  32. BLOCK "VarFileInfo"
  33. BEGIN
  34. VALUE "Translation", 0x0, 1200
  35. END
  36. END