home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / MS_VC.50 / VC / MFC / SRC / MFCINTL.RC < prev    next >
Encoding:
Text File  |  1996-11-01  |  2.4 KB  |  85 lines

  1. // mfcintl.rc : Defines the resources for the MFC Language Specific DLLs
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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. #include "afxres.h"
  14.  
  15. #if (LANGID == 0x409)
  16.  #define LOCDIR(f) <f>
  17. #else
  18.  #define LOCDIR(f) <l.##LANG##\\f>
  19. #endif
  20.  
  21. #define _AFX_IMPL_RESOURCES
  22.  
  23. // include all the standard resources
  24. #include LOCDIR(afxres.rc)
  25. #include LOCDIR(afxprint.rc)
  26.  
  27. // include all the OLE resources
  28. #include LOCDIR(afxolecl.rc)
  29. #include LOCDIR(afxolesv.rc)
  30.  
  31. // include all the DB resources
  32. #include LOCDIR(afxdb.rc)
  33.  
  34. // include all the CTL resources
  35. #include LOCDIR(afxctl.rc)
  36.  
  37. // include standard status bar strings
  38. #include LOCDIR(indicate.rc)
  39. // include _all_ standard command message prompts
  40. #include LOCDIR(prompts.rc)
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // Version stamp for this .DLL
  44.  
  45. #include "winver.h"
  46. #include "build_.h"
  47.  
  48. // Version Info for MFC42[LANG].DLL
  49. VS_VERSION_INFO     VERSIONINFO
  50.   FILEVERSION       4,21,0,_MFC_BUILD
  51.   PRODUCTVERSION    5,0,0,0
  52.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  53. #ifndef RELEASE
  54.   FILEFLAGS         VS_FF_PRERELEASE
  55. #else
  56.   FILEFLAGS         0 // final version
  57. #endif
  58.   FILEOS            VOS_NT_WINDOWS32
  59.   FILETYPE          VFT_DLL
  60.   FILESUBTYPE       0   // not used
  61. BEGIN
  62.     BLOCK "StringFileInfo"
  63.     BEGIN
  64.         BLOCK LANGCODE
  65.             // Note: Actual LANGCODE determined by MFCINTL.MAK
  66.         BEGIN
  67.             VALUE "CompanyName",     "Microsoft Corporation\0"
  68.             VALUE "FileDescription", "MFC Language Specific Resources\0"
  69.             VALUE "FileVersion",     "4.21." _MFC_USER_BUILD "\0"
  70.             VALUE "InternalName",    "MFCINTL\0"
  71.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1997\0"
  72.             VALUE "LegalTrademarks", "\0"
  73.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  74.             VALUE "ProductVersion",  "5.0.000\0"
  75.         END
  76.     END
  77.     BLOCK "VarFileInfo"
  78.     BEGIN
  79.         VALUE "Translation", LANGID, CODEPAGE
  80.             // Note: Actual LANGID and CODEPAGE determined by MFCINTL.MAK
  81.     END
  82. END
  83.  
  84. /////////////////////////////////////////////////////////////////////////////
  85.