home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SRC / MFCDLL.RC_ / MFCDLL.RC
Encoding:
Text File  |  1993-02-08  |  3.2 KB  |  112 lines

  1. /* mfcdll.rc : Defines the resources for the MFC DLL
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. */
  13.  
  14.  
  15. #include "afxres.h"
  16.  
  17. // include all the standard resources
  18. #include "afxres.rc"
  19. #include "afxprint.rc"
  20. #include "afxolecl.rc"
  21. #include "afxolesv.rc"
  22.  
  23. // include standard status bar strings
  24. #include "..\samples\apstudio\indicate.rc"
  25. // include _all_ standard command message prompts
  26. #include "..\samples\apstudio\prompts.rc"
  27.  
  28. /////////////////////////////////////////////////////////////////////////////
  29. // Version stamp for this .DLL
  30.  
  31. #include "ver.h"
  32.  
  33. #ifdef _DEBUG
  34.  
  35. // Version Info for MFC200D.DLL
  36. VS_VERSION_INFO     VERSIONINFO
  37.   FILEVERSION       2,0,0,1
  38.   PRODUCTVERSION    2,0,0,1
  39.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  40. #ifndef RELEASE
  41.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRERELEASE
  42. #else
  43.   FILEFLAGS         VS_FF_DEBUG
  44. #endif
  45.   FILEOS            VOS_DOS_WINDOWS16
  46.   FILETYPE          VFT_DLL
  47.   FILESUBTYPE       0   // not used
  48. BEGIN
  49.     BLOCK "StringFileInfo"
  50.     BEGIN
  51.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  52.         BEGIN 
  53.             VALUE "CompanyName",     "Microsoft Corporation\0"
  54.             VALUE "FileDescription", "MFCDLL Shared Library - Debug Version\0"
  55.             VALUE "FileVersion",     "2.0.000\0"
  56.             VALUE "InternalName",    "MFCDLLD\0"
  57.             VALUE "LegalCopyright",  "Copyright \251 Microsoft Corp. 1993\0"
  58.             VALUE "LegalTrademarks", "\0"
  59.             VALUE "OriginalFilename","MFCDLLD.DLL\0"
  60.             VALUE "ProductName",     "Microsoft\256 Visual C++\0"
  61.             VALUE "ProductVersion",  "1.0.000\0"
  62.         END
  63.     END
  64.     BLOCK "VarFileInfo" 
  65.     BEGIN 
  66.         VALUE "Translation", 0x409, 1252
  67.             // English language (0x409) and the Windows ANSI codepage (1252)
  68.     END
  69. END
  70.  
  71. #else // RETAIL
  72.  
  73. // Version Info for MFC200D.DLL
  74. VS_VERSION_INFO     VERSIONINFO
  75.   FILEVERSION       2,0,0,1
  76.   PRODUCTVERSION    2,0,0,1
  77.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  78. #ifndef RELEASE
  79.   FILEFLAGS         VS_FF_PRERELEASE
  80. #else
  81.   FILEFLAGS         0 // final version
  82. #endif
  83.   FILEOS            VOS_DOS_WINDOWS16
  84.   FILETYPE          VFT_DLL
  85.   FILESUBTYPE       0   // not used
  86. BEGIN
  87.     BLOCK "StringFileInfo"
  88.     BEGIN
  89.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  90.         BEGIN 
  91.             VALUE "CompanyName",     "Microsoft Corporation\0"
  92.             VALUE "FileDescription", "MFCDLL Shared Library - Retail Version\0"
  93.             VALUE "FileVersion",     "2.0.000\0"
  94.             VALUE "InternalName",    "MFCDLL\0"
  95.             VALUE "LegalCopyright",  "Copyright \251 Microsoft Corp. 1993\0"
  96.             VALUE "LegalTrademarks", "\0"
  97.             VALUE "OriginalFilename","MFCDLL.DLL\0"
  98.             VALUE "ProductName",     "Microsoft\256 Visual C++\0"
  99.             VALUE "ProductVersion",  "1.0.000\0"
  100.         END
  101.     END
  102.     BLOCK "VarFileInfo" 
  103.     BEGIN 
  104.         VALUE "Translation", 0x409, 1252
  105.             // English language (0x409) and the Windows ANSI codepage (1252)
  106.     END
  107. END
  108.  
  109. #endif
  110.  
  111. /////////////////////////////////////////////////////////////////////////////
  112.