SetupLdr.version.rc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // SetupLdr 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. // The spaces are placeholders. Longer texts will be truncated to the placeholder length.
  9. 1 VERSIONINFO
  10. FILEVERSION 0,0,0,0
  11. PRODUCTVERSION 0,0,0,0
  12. FILEFLAGSMASK 0x3fL
  13. FILEFLAGS 0x0L
  14. FILEOS 0x4L
  15. FILETYPE 0x1L
  16. FILESUBTYPE 0x0L
  17. BEGIN
  18. BLOCK "StringFileInfo"
  19. BEGIN
  20. BLOCK "000004b0"
  21. BEGIN
  22. VALUE "Comments", "This installation was built with Inno Setup.\0"
  23. VALUE "CompanyName", " \0"
  24. VALUE "FileDescription", " \0"
  25. VALUE "FileVersion", " \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