home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / MS_VC.50 / VC / MFC / SRC / MFCDLL.RC < prev    next >
Encoding:
Text File  |  1996-12-03  |  3.6 KB  |  127 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-1996 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 related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include "afxres.h"
  15.  
  16. #define _AFX_IMPL_RESOURCES
  17.  
  18. // include all the standard resources
  19. #include "afxres.rc"
  20. #include "afxprint.rc"
  21. #include "afxisapi.rc"
  22.  
  23. // include standard status bar strings
  24. #include "indicate.rc"
  25. // include _all_ standard command message prompts
  26. #include "prompts.rc"
  27.  
  28. #ifdef _AFX_MONOLITHIC
  29. // include all the standard OLE resources
  30. #include "afxolecl.rc"
  31. #include "afxolesv.rc"
  32. #include "afxctl.rc"
  33.  
  34. // include all the standard database resources
  35. #include "afxdb.rc"
  36. #endif
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // Version stamp for this .DLL
  40.  
  41. #include "winver.h"
  42. #include "build_.h"
  43.  
  44. #ifndef _MAC
  45. #ifdef _DEBUG
  46.  
  47. // Version Info for MFC42[U]D.DLL
  48. VS_VERSION_INFO     VERSIONINFO
  49.   FILEVERSION       4,21,0,_MFC_BUILD
  50.   PRODUCTVERSION    5,0,0,0
  51.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  52. #ifndef RELEASE
  53.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRERELEASE
  54. #else
  55.   FILEFLAGS         VS_FF_DEBUG
  56. #endif
  57.   FILEOS            VOS_NT_WINDOWS32
  58.   FILETYPE          VFT_DLL
  59.   FILESUBTYPE       0   // not used
  60. BEGIN
  61.     BLOCK "StringFileInfo"
  62.     BEGIN
  63.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  64.         BEGIN
  65.             VALUE "CompanyName",     "Microsoft Corporation\0"
  66.             VALUE "FileDescription", "MFCDLL Shared Library - Debug Version\0"
  67.             VALUE "FileVersion",     "4.21." _MFC_USER_BUILD "\0"
  68.             VALUE "InternalName",    "MFCDLLD\0"
  69.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1997\0"
  70.             VALUE "LegalTrademarks", "\0"
  71.             VALUE "OriginalFilename","MFC42D.DLL\0"
  72.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  73.             VALUE "ProductVersion",  "5.0.000\0"
  74.             VALUE "OLESelfRegister", "\0"
  75.         END
  76.     END
  77.     BLOCK "VarFileInfo"
  78.     BEGIN
  79.         VALUE "Translation", 0x409, 1252
  80.             // English language (0x409) and the Windows ANSI codepage (1252)
  81.     END
  82. END
  83.  
  84. #else // RETAIL
  85.  
  86. // Version Info for MFC42[U].DLL
  87. VS_VERSION_INFO     VERSIONINFO
  88.   FILEVERSION       4,21,0,_MFC_BUILD
  89.   PRODUCTVERSION    5,0,0,0
  90.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  91. #ifndef RELEASE
  92.   FILEFLAGS         VS_FF_PRERELEASE
  93. #else
  94.   FILEFLAGS         0 // final version
  95. #endif
  96.   FILEOS            VOS_NT_WINDOWS32
  97.   FILETYPE          VFT_DLL
  98.   FILESUBTYPE       0   // not used
  99. BEGIN
  100.     BLOCK "StringFileInfo"
  101.     BEGIN
  102.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  103.         BEGIN
  104.             VALUE "CompanyName",     "Microsoft Corporation\0"
  105.             VALUE "FileDescription", "MFCDLL Shared Library - Retail Version\0"
  106.             VALUE "FileVersion",     "4.21." _MFC_USER_BUILD "\0"
  107.             VALUE "InternalName",    "MFCDLL\0"
  108.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1997\0"
  109.             VALUE "LegalTrademarks", "\0"
  110.             VALUE "OriginalFilename","MFC42.DLL\0"
  111.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  112.             VALUE "ProductVersion",  "5.0.000"
  113.             VALUE "OLESelfRegister", "\0"
  114.         END
  115.     END
  116.     BLOCK "VarFileInfo"
  117.     BEGIN
  118.         VALUE "Translation", 0x409, 1252
  119.             // English language (0x409) and the Windows ANSI codepage (1252)
  120.     END
  121. END
  122.  
  123. #endif // _DEBUG
  124. #endif // _MAC
  125.  
  126. /////////////////////////////////////////////////////////////////////////////
  127.