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.

82 lines
2.8 KiB

  1. /*--------------------------------------------------------------*/
  2. /* */
  3. /* The following section actually creates the version structure.*/
  4. /* They are ignored if we are not being invoked by RC. */
  5. /* */
  6. /* VERSION.H must be included before including this file */
  7. /* */
  8. /* If VER_LEGALCOPYRIGHT_STR is not defined, it will be */
  9. /* constructed using VER_LEGALCOPYRIGHT_YEARS, so at least one */
  10. /* these macros must be defined before including this file. */
  11. /* */
  12. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR, and */
  13. /* VER_INTERNALNAME_STR must be defined before including this */
  14. /* file. */
  15. /* */
  16. /* If VER_FILEVERSION is not defined, VER_PRODUCTVERSION will be*/
  17. /* used instead. If VER_FILEVERSION_STR is not defined, */
  18. /* VER_PRODUCTVERSION_STR will be used instead. */
  19. /* */
  20. /* If VER_ORIGINALFILENAME_STR is not defined, it is set to */
  21. /* the NULL string. */
  22. /* */
  23. /* If INTL is defined, then this is assumed to be an */
  24. /* an international build; two string blocks will be created, */
  25. /* (since all version resources must have English), and the */
  26. /* second one can be localized */
  27. /* */
  28. /*--------------------------------------------------------------*/
  29. #ifdef RC_INVOKED
  30. #ifndef VER_LEGALCOPYRIGHT_YEARS
  31. #define VER_LEGALCOPYRIGHT_YEARS "1992-1998"
  32. #endif
  33. #ifndef VER_LEGALCOPYRIGHT_STR
  34. #define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. " VER_LEGALCOPYRIGHT_YEARS
  35. #endif
  36. #ifndef VER_FILEVERSION
  37. #define VER_FILEVERSION VER_PRODUCTVERSION
  38. #endif
  39. #ifndef VER_FILEVERSION_STR
  40. #define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR
  41. #endif
  42. #ifndef VER_ORIGINALFILENAME_STR
  43. #define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
  44. #endif
  45. VS_VERSION_INFO VERSIONINFO
  46. FILEVERSION VER_FILEVERSION
  47. PRODUCTVERSION VER_PRODUCTVERSION
  48. FILEFLAGSMASK VER_FILEFLAGSMASK
  49. FILEFLAGS VER_FILEFLAGS
  50. FILEOS VER_FILEOS
  51. FILETYPE VER_FILETYPE
  52. FILESUBTYPE VER_FILESUBTYPE
  53. BEGIN
  54. BLOCK "StringFileInfo"
  55. BEGIN
  56. BLOCK "040904B0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
  57. BEGIN
  58. VALUE "CompanyName", VER_COMPANYNAME_STR
  59. VALUE "FileDescription", VER_FILEDESCRIPTION_STR
  60. VALUE "FileVersion", VER_FILEVERSION_STR
  61. VALUE "InternalName", VER_INTERNALNAME_STR
  62. VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
  63. VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR
  64. VALUE "ProductName", VER_PRODUCTNAME_STR
  65. VALUE "ProductVersion", VER_PRODUCTVERSION_STR
  66. END
  67. END
  68. BLOCK "VarFileInfo"
  69. BEGIN
  70. VALUE "Translation", 0x0409, 0x04B0
  71. END
  72. END
  73. #endif