home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / mfcole.rc < prev    next >
Text File  |  1998-06-16  |  3KB  |  108 lines

  1. // mfcole.rc : Defines the resources for the MFC OLE 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. // include all the standard resources
  17. #include "afxolecl.rc"
  18. #include "afxolesv.rc"
  19. #include "afxctl.rc"
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // Version stamp for this .DLL
  23.  
  24. #include "winver.h"
  25. #include "afxbld_.h"
  26.  
  27. #ifdef _DEBUG
  28.  
  29. // Version Info for MFCO42D.DLL
  30. VS_VERSION_INFO     VERSIONINFO
  31.   FILEVERSION       6,0,_MFC_BUILD,_MFC_RBLD
  32.   PRODUCTVERSION    6,0,0,0
  33.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  34. #ifndef RELEASE
  35.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRERELEASE
  36. #else
  37.   FILEFLAGS         VS_FF_DEBUG
  38. #endif
  39.   FILEOS            VOS_NT_WINDOWS32
  40.   FILETYPE          VFT_DLL
  41.   FILESUBTYPE       0   // not used
  42. BEGIN
  43.     BLOCK "StringFileInfo"
  44.     BEGIN
  45.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  46.         BEGIN
  47.             VALUE "CompanyName",     "Microsoft Corporation\0"
  48.             VALUE "FileDescription", "MFCOLE Shared Library - Debug Version\0"
  49.             VALUE "FileVersion",     "6.00." _MFC_USER_BUILD "." _MFC_USER_RBLD "\0"
  50.             VALUE "InternalName",    "MFCOLED\0"
  51.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1998\0"
  52.             VALUE "LegalTrademarks", "\0"
  53.             VALUE "OriginalFilename","MFCO42D.DLL\0"
  54.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  55.             VALUE "ProductVersion",  "6.0.000\0"
  56.             VALUE "OLESelfRegister", "\0"
  57.         END
  58.     END
  59.     BLOCK "VarFileInfo"
  60.     BEGIN
  61.         VALUE "Translation", 0x409, 1252
  62.             // English language (0x409) and the Windows ANSI codepage (1252)
  63.     END
  64. END
  65.  
  66. #else // RETAIL
  67.  
  68. // Version Info for MFCO42.DLL
  69. VS_VERSION_INFO     VERSIONINFO
  70.   FILEVERSION       6,0,_MFC_BUILD,_MFC_RBLD
  71.   PRODUCTVERSION    6,0,0,0
  72.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  73. #ifndef RELEASE
  74.   FILEFLAGS         VS_FF_PRERELEASE
  75. #else
  76.   FILEFLAGS         0 // final version
  77. #endif
  78.   FILEOS            VOS_NT_WINDOWS32
  79.   FILETYPE          VFT_DLL
  80.   FILESUBTYPE       0   // not used
  81. BEGIN
  82.     BLOCK "StringFileInfo"
  83.     BEGIN
  84.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  85.         BEGIN
  86.             VALUE "CompanyName",     "Microsoft Corporation\0"
  87.             VALUE "FileDescription", "MFCOLE Shared Library - Retail Version\0"
  88.             VALUE "FileVersion",     "6.00." _MFC_USER_BUILD "." _MFC_USER_RBLD "\0"
  89.             VALUE "InternalName",    "MFCOLE\0"
  90.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1998\0"
  91.             VALUE "LegalTrademarks", "\0"
  92.             VALUE "OriginalFilename","MFCO42.DLL\0"
  93.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  94.             VALUE "ProductVersion",  "6.0.000\0"
  95.             VALUE "OLESelfRegister", "\0"
  96.         END
  97.     END
  98.     BLOCK "VarFileInfo"
  99.     BEGIN
  100.         VALUE "Translation", 0x409, 1252
  101.             // English language (0x409) and the Windows ANSI codepage (1252)
  102.     END
  103. END
  104.  
  105. #endif // _DEBUG
  106.  
  107. /////////////////////////////////////////////////////////////////////////////
  108.