home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / mfcdll.rc < prev    next >
Text File  |  1998-06-16  |  4KB  |  125 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 "afxbld_.h"
  43.  
  44. #ifdef _DEBUG
  45.  
  46. // Version Info for MFC42[U]D.DLL
  47. VS_VERSION_INFO     VERSIONINFO
  48.   FILEVERSION       6,0,_MFC_BUILD,_MFC_RBLD
  49.   PRODUCTVERSION    6,0,0,0
  50.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  51. #ifndef RELEASE
  52.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRERELEASE
  53. #else
  54.   FILEFLAGS         VS_FF_DEBUG
  55. #endif
  56.   FILEOS            VOS_NT_WINDOWS32
  57.   FILETYPE          VFT_DLL
  58.   FILESUBTYPE       0   // not used
  59. BEGIN
  60.     BLOCK "StringFileInfo"
  61.     BEGIN
  62.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  63.         BEGIN
  64.             VALUE "CompanyName",     "Microsoft Corporation\0"
  65.             VALUE "FileDescription", "MFCDLL Shared Library - Debug Version\0"
  66.             VALUE "FileVersion",     "6.00." _MFC_USER_BUILD "." _MFC_USER_RBLD "\0"
  67.             VALUE "InternalName",    "MFCDLLD\0"
  68.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1998\0"
  69.             VALUE "LegalTrademarks", "\0"
  70.             VALUE "OriginalFilename","MFC42D.DLL\0"
  71.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  72.             VALUE "ProductVersion",  "6.0.000\0"
  73.             VALUE "OLESelfRegister", "\0"
  74.         END
  75.     END
  76.     BLOCK "VarFileInfo"
  77.     BEGIN
  78.         VALUE "Translation", 0x409, 1252
  79.             // English language (0x409) and the Windows ANSI codepage (1252)
  80.     END
  81. END
  82.  
  83. #else // RETAIL
  84.  
  85. // Version Info for MFC42[U].DLL
  86. VS_VERSION_INFO     VERSIONINFO
  87.   FILEVERSION       6,0,_MFC_BUILD,_MFC_RBLD
  88.   PRODUCTVERSION    6,0,0,0
  89.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  90. #ifndef RELEASE
  91.   FILEFLAGS         VS_FF_PRERELEASE
  92. #else
  93.   FILEFLAGS         0 // final version
  94. #endif
  95.   FILEOS            VOS_NT_WINDOWS32
  96.   FILETYPE          VFT_DLL
  97.   FILESUBTYPE       0   // not used
  98. BEGIN
  99.     BLOCK "StringFileInfo"
  100.     BEGIN
  101.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  102.         BEGIN
  103.             VALUE "CompanyName",     "Microsoft Corporation\0"
  104.             VALUE "FileDescription", "MFCDLL Shared Library - Retail Version\0"
  105.             VALUE "FileVersion",     "6.00." _MFC_USER_BUILD "." _MFC_USER_RBLD "\0"
  106.             VALUE "InternalName",    "MFCDLL\0"
  107.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1998\0"
  108.             VALUE "LegalTrademarks", "\0"
  109.             VALUE "OriginalFilename","MFC42.DLL\0"
  110.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  111.             VALUE "ProductVersion",  "6.0.000"
  112.             VALUE "OLESelfRegister", "\0"
  113.         END
  114.     END
  115.     BLOCK "VarFileInfo"
  116.     BEGIN
  117.         VALUE "Translation", 0x409, 1252
  118.             // English language (0x409) and the Windows ANSI codepage (1252)
  119.     END
  120. END
  121.  
  122. #endif // _DEBUG
  123.  
  124. /////////////////////////////////////////////////////////////////////////////
  125.