码迷,mamicode.com
首页 > 编程语言 > 详细

控制台应用程序中添加对MFC的支持

时间:2014-11-06 00:27:21      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   使用   for   sp   strong   文件   

在windows控制台应用程序中,肯能会想使用一些MFC中的类,如CStringArray等,通过下面两步简单的设置可以添加对MFC的支持:

1、右击工程名 -> References 选择 All Configuration

 ->Configuration Properties ->General->Use of MFC ->Use MFC in a Shared DLL

2、在stdafx.h头文件中添加一下内容:

#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // some CString constructors will be explicit
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN            // Exclude rarely-used stuff from Windows headers
#endif
#include <afx.h>
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h>           // MFC support for Internet Explorer 4 Common Controls
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>                     // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT

 

控制台应用程序中添加对MFC的支持

标签:style   io   color   ar   使用   for   sp   strong   文件   

原文地址:http://www.cnblogs.com/cmranger/p/4077626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!