Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.5 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: version.rc
  7. //
  8. // Contents: Version resource for Forms3 components.
  9. //
  10. // Define the following before #including this file:
  11. //
  12. // What Example
  13. // VER_FILE_DESCRIPTION "Microsoft\256 Forms Formtool"
  14. // VER_INTERNAL_NAME "Formtool"
  15. // VER_ORIGINAL_FILENAME "FORMTOOL.EXE"
  16. // VER_SELFREGISTER [ if self registering ]
  17. //
  18. //----------------------------------------------------------------------------
  19. #include "versstr.h"
  20. VS_VERSION_INFO VERSIONINFO
  21. FILEVERSION VER_VERSION
  22. PRODUCTVERSION VER_VERSION
  23. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  24. #if defined(_RELEASE_BUILD) && DBG == 0
  25. FILEFLAGS 0
  26. #else
  27. FILEFLAGS VS_FF_PRERELEASE|VER_PRIVATE_BUILD_FLG|VER_DEBUG_BUILD_FLG
  28. #endif
  29. FILEOS VOS__WINDOWS32
  30. FILETYPE VFT_DLL
  31. FILESUBTYPE VFT2_UNKNOWN
  32. BEGIN
  33. BLOCK "StringFileInfo"
  34. BEGIN
  35. BLOCK "040904B0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
  36. BEGIN
  37. #if !defined(_RELEASE_BUILD)
  38. VALUE "Comments", VER_COMMENT
  39. #endif
  40. VALUE "CompanyName", "Microsoft Corporation"
  41. VALUE "FileDescription", VER_FILE_DESCRIPTION
  42. VALUE "FileVersion", VER_VERSION_STR
  43. VALUE "InternalName", VER_INTERNAL_NAME
  44. #if defined(_RELEASE_BUILD) && DBG == 0
  45. VALUE "LegalCopyright", "Copyright\251 Microsoft Corp. 1993-1996"
  46. #else
  47. VALUE "LegalCopyright", "Unpublished work. Copyright\251 Microsoft Corp. 1993-1996"
  48. #endif
  49. VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation."
  50. VALUE "OriginalFilename",VER_ORIGINAL_FILENAME
  51. VALUE "ProductName", "Microsoft\256 Forms"
  52. VALUE "ProductVersion", VER_VERSION_STR
  53. #ifdef VER_SELFREGISTER
  54. VALUE "OLESelfRegister", ""
  55. #endif
  56. #if defined(VER_PRIVATE_BUILD_STR) && !defined(_RELEASE_BUILD)
  57. VALUE "PrivateBuild", "Built by " VER_PRIVATE_BUILD_STR
  58. VALUE "SpecialBuild", "This is NOT an offical build!!!"
  59. #endif
  60. END
  61. END
  62. BLOCK "VarFileInfo"
  63. BEGIN
  64. VALUE "Translation", 0x0409, 0x04B0
  65. END
  66. END