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.

119 lines
4.1 KiB

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