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.

109 lines
3.8 KiB

  1. /****************************************************************************
  2. *
  3. * $Archive: Q:/sturgeon/src/isrdbg/vcs/ver.rcv $
  4. *
  5. * INTEL Corporation Prorietary Information
  6. *
  7. * This listing is supplied under the terms of a license agreement
  8. * with INTEL Corporation and may not be copied nor disclosed except
  9. * in accordance with the terms of that agreement.
  10. *
  11. * Copyright (c) 1993-1994 Intel Corporation.
  12. *
  13. * $Revision: 1.0 $
  14. * $Date: Feb 05 1996 16:27:32 $
  15. * $Author: DMGORLIC $
  16. *
  17. * Deliverable: isrdbg32.dll
  18. *
  19. * Abstract: This is a module version resource file and each deliverable
  20. * must #include its own customized copy into the main rc file.
  21. *
  22. * Notes: Make a copy of ver.rc for your project and customize it as
  23. * described in the comment following this header. Normally you would
  24. * just #include "ver.rc" in your main rc file, but AppStudio will
  25. * penalize you for such independance. Instead, open your main rc
  26. * file in AppStudio, and open File->"Set Includes...", then in the
  27. * "Compile-Time Directives:" edit box add #include "ver.rc". This
  28. * tells AppStudio to leave our version resource alone!
  29. *
  30. ***************************************************************************/
  31. #include "winver.h"
  32. // Some of the version-resource information is unique for a module and
  33. // must be specified by the developer. The current settings are an example
  34. // of how they should be set. The V_FILETYPE can also be set to VFT_VXD or
  35. // VFT_DRV, etc., but then you will have to change some of the settings in
  36. // the section below (like V_FILESUBTYPE). This is a standard Microsoft
  37. // VER resource so you can get help to figure it out.
  38. //
  39. #define V_DESCRIPTION_STR "ISR Debug 32-bit Engine"
  40. #define V_PRODUCTNAME_STR "ISRDBG32.DLL"
  41. #define V_INTERNALNAME_STR "ISRDBG32"
  42. #define V_ORIGINALNAME_STR "ISRDBG32.DLL"
  43. #define V_FILETYPE VFT_DLL // _APP or _DLL
  44. //--------------------------------------------------------------------------
  45. // Versioning is automatic because your makefile must define PVER and IVER
  46. // as specified in the makefile template. To change your versions, do it
  47. // in the makefile or on the nmake command line (see makefile template).
  48. //
  49. #ifndef PVER
  50. #define PVER "0.0" // Must be a string.
  51. #endif
  52. #ifndef IVER
  53. #define IVER 0,00,0,000 // Must be comma-delimited.
  54. #endif
  55. #define V_PRODUCTVERSION_STR PVER // Product version (ie. "1.11").
  56. #define V_INTERNALVERSION IVER // Internal ver (ie. 1,11,1,001).
  57. // The following defines need not be adjusted for every module.
  58. //
  59. #define V_COMPANYNAME_STR "Intel Corporation"
  60. #define V_COPYRIGHT_STR "Copyright \251 Intel Corporation, 1993-1999"
  61. #define V_FILEVERSION_STR V_PRODUCTVERSION_STR
  62. #define V_FILEVERSION V_INTERNALVERSION
  63. #define V_FILESUBTYPE VFT_UNKNOWN
  64. #define V_OS VOS__WINDOWS32
  65. #ifdef DEBUG
  66. #define V_FILEFLAGS VS_FF_DEBUG
  67. #else
  68. #define V_FILEFLAGS 0
  69. #endif
  70. // This is the actual version resource.
  71. //
  72. VS_VERSION_INFO VERSIONINFO
  73. FILEVERSION V_FILEVERSION
  74. PRODUCTVERSION V_INTERNALVERSION
  75. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  76. FILEFLAGS V_FILEFLAGS
  77. FILEOS V_OS
  78. FILETYPE V_FILETYPE
  79. FILESUBTYPE V_FILESUBTYPE
  80. BEGIN
  81. BLOCK "StringFileInfo"
  82. BEGIN
  83. BLOCK "040904E4"
  84. BEGIN
  85. VALUE "CompanyName", V_COMPANYNAME_STR, "\0"
  86. VALUE "FileDescription", V_DESCRIPTION_STR, "\0"
  87. VALUE "FileVersion", V_FILEVERSION_STR, "\0"
  88. VALUE "InternalName", V_INTERNALNAME_STR, "\0"
  89. VALUE "LegalCopyright", V_COPYRIGHT_STR, "\0"
  90. VALUE "OriginalFilename",V_ORIGINALNAME_STR, "\0"
  91. VALUE "ProductName", V_PRODUCTNAME_STR, "\0"
  92. VALUE "ProductVersion", V_PRODUCTVERSION_STR,"\0"
  93. END
  94. END
  95. BLOCK "VarFileInfo"
  96. BEGIN
  97. VALUE "Translation", 0x0409, 0x04E4
  98. END
  99. END