// mfcdll.rc : Defines the resources for the MFC DLL // // This is a part of the Microsoft Foundation Classes C++ library. // Copyright (C) 1992-1995 Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Microsoft Foundation Classes Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Microsoft Foundation Classes product. #include "afxres.h" #define _AFX_IMPL_RESOURCES // include all the standard resources #include "afxres.rc" #include "afxprint.rc" #include "afxisapi.rc" // include standard status bar strings #include "indicate.rc" // include _all_ standard command message prompts #include "prompts.rc" #ifdef _AFX_MONOLITHIC // include all the standard OLE resources #include "afxolecl.rc" #include "afxolesv.rc" #include "afxctl.rc" // include all the standard database resources #include "afxdb.rc" #endif ///////////////////////////////////////////////////////////////////////////// // Version stamp for this .DLL #include "winver.h" #include "build_.h" #ifndef _MAC #ifdef _DEBUG // Version Info for MFC40[U]D.DLL VS_VERSION_INFO VERSIONINFO FILEVERSION 4,1,0,_MFC_BUILD PRODUCTVERSION 4,1,0,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifndef RELEASE FILEFLAGS VS_FF_DEBUG|VS_FF_PRERELEASE #else FILEFLAGS VS_FF_DEBUG #endif FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_DLL FILESUBTYPE 0 // not used BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual BEGIN VALUE "CompanyName", "Microsoft Corporation\0" VALUE "FileDescription", "MFCDLL Shared Library - Debug Version\0" VALUE "FileVersion", "4.1." _MFC_USER_BUILD "\0" VALUE "InternalName", "MFCDLLD\0" VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1993-1995\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename","MFC40D.DLL\0" VALUE "ProductName", "Microsoft (R) Visual C++\0" VALUE "ProductVersion", "4.1.000\0" VALUE "OLESelfRegister", "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1252 // English language (0x409) and the Windows ANSI codepage (1252) END END #else // RETAIL // Version Info for MFC40[U].DLL VS_VERSION_INFO VERSIONINFO FILEVERSION 4,1,0,_MFC_BUILD PRODUCTVERSION 4,1,0,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifndef RELEASE FILEFLAGS VS_FF_PRERELEASE #else FILEFLAGS 0 // final version #endif FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_DLL FILESUBTYPE 0 // not used BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilual BEGIN VALUE "CompanyName", "Microsoft Corporation\0" VALUE "FileDescription", "MFCDLL Shared Library - Retail Version\0" VALUE "FileVersion", "4.1." _MFC_USER_BUILD "\0" VALUE "InternalName", "MFCDLL\0" VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1993-1995\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename","MFC40.DLL\0" VALUE "ProductName", "Microsoft (R) Visual C++\0" VALUE "ProductVersion", "4.1.000" VALUE "OLESelfRegister", "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1252 // English language (0x409) and the Windows ANSI codepage (1252) END END #endif // _DEBUG #endif // _MAC /////////////////////////////////////////////////////////////////////////////