home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / mfcintl.rc < prev    next >
Text File  |  1998-06-16  |  3KB  |  88 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-1998 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 all the ISAPI resources
  38. #include LOCDIR(afxisapi.rc)
  39.  
  40. // include standard status bar strings
  41. #include LOCDIR(indicate.rc)
  42. // include _all_ standard command message prompts
  43. #include LOCDIR(prompts.rc)
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // Version stamp for this .DLL
  47.  
  48. #include "winver.h"
  49. #include "afxbld_.h"
  50.  
  51. // Version Info for MFC42[LANG].DLL
  52. VS_VERSION_INFO     VERSIONINFO
  53.   FILEVERSION       6,0,_MFC_BUILD,_MFC_RBLD
  54.   PRODUCTVERSION    6,0,0,0
  55.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  56. #ifndef RELEASE
  57.   FILEFLAGS         VS_FF_PRERELEASE
  58. #else
  59.   FILEFLAGS         0 // final version
  60. #endif
  61.   FILEOS            VOS_NT_WINDOWS32
  62.   FILETYPE          VFT_DLL
  63.   FILESUBTYPE       0   // not used
  64. BEGIN
  65.     BLOCK "StringFileInfo"
  66.     BEGIN
  67.         BLOCK LANGCODE
  68.             // Note: Actual LANGCODE determined by MFCINTL.MAK
  69.         BEGIN
  70.             VALUE "CompanyName",     "Microsoft Corporation\0"
  71.             VALUE "FileDescription", "MFC Language Specific Resources\0"
  72.             VALUE "FileVersion",     "6.00." _MFC_USER_BUILD "." _MFC_USER_RBLD "\0"
  73.             VALUE "InternalName",    "MFCINTL\0"
  74.             VALUE "LegalCopyright",  "Copyright (C) Microsoft Corp. 1993-1998\0"
  75.             VALUE "LegalTrademarks", "\0"
  76.             VALUE "ProductName",     "Microsoft (R) Visual C++\0"
  77.             VALUE "ProductVersion",  "6.0.000\0"
  78.         END
  79.     END
  80.     BLOCK "VarFileInfo"
  81.     BEGIN
  82.         VALUE "Translation", LANGID, CODEPAGE
  83.             // Note: Actual LANGID and CODEPAGE determined by MFCINTL.MAK
  84.     END
  85. END
  86.  
  87. /////////////////////////////////////////////////////////////////////////////
  88.