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.

93 lines
2.7 KiB

  1. //=--------------------------------------------------------------------------=
  2. // mmcproxy.rc
  3. //=--------------------------------------------------------------------------=
  4. // Copyright (c) 1999, Microsoft Corp.
  5. // All Rights Reserved
  6. // Information Contained Herein Is Proprietary and Confidential.
  7. //=--------------------------------------------------------------------------=
  8. //
  9. // MMC Proxy resources
  10. //
  11. #include <windows.h>
  12. #ifdef _WIN32
  13. LANGUAGE 9, 1
  14. #pragma code_page(1252)
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // Version Information: NT scheme
  18. /////////////////////////////////////////////////////////////////////////////
  19. //
  20. #if !defined(USE_VB_VERSION_SCHEME)
  21. #include <ntverp.h>
  22. #include <winver.h>
  23. #include <dlgs.h>
  24. #define VER_FILETYPE VFT_APP
  25. #define VER_FILESUBTYPE VFT2_UNKNOWN
  26. #define VER_FILEDESCRIPTION_STR "Microsoft Management Console Proxy/Stub"
  27. #define VER_INTERNALNAME_STR "mmcproxy.dll"
  28. #define VER_ORIGINALFILENAME_STR "mmcproxy.dll"
  29. #include "common.ver"
  30. #else
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Version Information: VB scheme
  33. /////////////////////////////////////////////////////////////////////////////
  34. //
  35. #include <dwinvers.h>
  36. #include <winver.h>
  37. VS_VERSION_INFO VERSIONINFO
  38. FILEVERSION vusMajorVer,vusMinorVer,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  39. PRODUCTVERSION vusMajorVer,vusMinorVer,vusVersNumf2,vusVersNuml2
  40. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  41. #ifdef DEBUG
  42. FILEFLAGS VS_FF_DEBUG
  43. #else
  44. FILEFLAGS 0L
  45. #endif
  46. FILEOS VOS_NT_WINDOWS32
  47. FILETYPE VFT_DLL
  48. FILESUBTYPE 0
  49. {
  50. BLOCK "StringFileInfo"
  51. {
  52. BLOCK "040904E4" // Language and character set identifiers.
  53. {
  54. VALUE "CompanyName", "Microsoft\0"
  55. VALUE "FileDescription", "Microsoft Management Console Interfaces Proxy/Stub"
  56. VALUE "FileVersion", vszVersNumAll
  57. VALUE "InternalName", "mmcproxy.dll\0"
  58. VALUE "LegalCopyright", vszCopyright
  59. VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  60. VALUE "ProductName", "Microsoft Management Console Interfaces Proxy/Stub\0"
  61. VALUE "ProductVersion", vszVersNumAll
  62. VALUE "Comments", vszMakeDate
  63. #ifndef INTLBUILD
  64. VALUE "OLESelfRegister", "\0"
  65. #endif
  66. }
  67. }
  68. BLOCK "VarFileInfo"
  69. {
  70. VALUE "Translation" ,0x409, 0x4e4
  71. }
  72. }
  73. #endif