home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / MS_VC.50 / VC / MFC / SRC / MFCOLE.RC < prev    next >
Encoding:
Text File  |  1996-07-12  |  3.2 KB  |  109 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 "build_.h"
  26.  
  27. #ifndef _MAC
  28. #ifdef _DEBUG
  29.  
  30. // Version Info for MFCO42D.DLL
  31. VS_VERSION_INFO     VERSIONINFO
  32.   FILEVERSION       4,21,0,_MFC_BUILD
  33.   PRODUCTVERSION    5,0,0,0
  34.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  35. #ifndef RELEASE
  36.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRERELEASE
  37. #else
  38.   FILEFLAGS         VS_FF_DEBUG
  39. #endif
  40.   FILEOS            VOS_NT_WINDOWS32
  41.   FILETYPE          VFT_DLL
  42.   FILESUBTYPE       0   // not used
  43. BEGIN
  44.     BLOCK "StringFileInfo"
  45.     BEGIN
  46.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  47.         BEGIN
  48.             VALUE "CompanyName",     "Microsoft Corporation\0"
  49.             VALUE "FileDescription", "MFCOLE Shared Library - Debug Version\0"
  50.             VALUE "FileVersion",     "4.21." _MFC_USER_BUILD "\0"
  51.             VALUE "InternalName",    "MFCOLED\0"
  52.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1992\0"
  53.             VALUE "LegalTrademarks", "\0"
  54.             VALUE "OriginalFilename","MFCO42D.DLL\0"
  55.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  56.             VALUE "ProductVersion",  "5.0.000\0"
  57.             VALUE "OLESelfRegister", "\0"
  58.         END
  59.     END
  60.     BLOCK "VarFileInfo"
  61.     BEGIN
  62.         VALUE "Translation", 0x409, 1252
  63.             // English language (0x409) and the Windows ANSI codepage (1252)
  64.     END
  65. END
  66.  
  67. #else // RETAIL
  68.  
  69. // Version Info for MFCO42.DLL
  70. VS_VERSION_INFO     VERSIONINFO
  71.   FILEVERSION       4,21,0,_MFC_BUILD
  72.   PRODUCTVERSION    5,0,0,0
  73.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  74. #ifndef RELEASE
  75.   FILEFLAGS         VS_FF_PRERELEASE
  76. #else
  77.   FILEFLAGS         0 // final version
  78. #endif
  79.   FILEOS            VOS_NT_WINDOWS32
  80.   FILETYPE          VFT_DLL
  81.   FILESUBTYPE       0   // not used
  82. BEGIN
  83.     BLOCK "StringFileInfo"
  84.     BEGIN
  85.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual
  86.         BEGIN
  87.             VALUE "CompanyName",     "Microsoft Corporation\0"
  88.             VALUE "FileDescription", "MFCOLE Shared Library - Retail Version\0"
  89.             VALUE "FileVersion",     "4.21." _MFC_USER_BUILD "\0"
  90.             VALUE "InternalName",    "MFCOLE\0"
  91.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1996\0"
  92.             VALUE "LegalTrademarks", "\0"
  93.             VALUE "OriginalFilename","MFCO42.DLL\0"
  94.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  95.             VALUE "ProductVersion",  "5.0.000\0"
  96.             VALUE "OLESelfRegister", "\0"
  97.         END
  98.     END
  99.     BLOCK "VarFileInfo"
  100.     BEGIN
  101.         VALUE "Translation", 0x409, 1252
  102.             // English language (0x409) and the Windows ANSI codepage (1252)
  103.     END
  104. END
  105.  
  106. #endif // _DEBUG
  107. #endif // _MAC
  108. /////////////////////////////////////////////////////////////////////////////
  109.