win32程序中简单应用mfc

简介: <div id="cnblogs_post_body"> <p>今日写程序在win32中用CRect发现报错,突然想起来。要引入mfc库。想重新建立一个工程添加对mfc的支持。发现选项不能选。查资料后发现。</p> <p>在win32程序中简单应用mfc库,只需要简单的引入<afx.h>就好了。注意这个时候如果出来</p> <p>#ifdef _DLL<br> #ifn

今日写程序在win32中用CRect发现报错,突然想起来。要引入mfc库。想重新建立一个工程添加对mfc的支持。发现选项不能选。查资料后发现。

在win32程序中简单应用mfc库,只需要简单的引入<afx.h>就好了。注意这个时候如果出来

#ifdef _DLL
#ifndef _AFXDLL
#error Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
#endif
#endif

这个错误。只需要把use of mfc改为Use MFC in a Shared DLL就可以了。

当然<windows.h>头文件在mfc中已经包含所以去掉。

相关文章
|
消息中间件 C++ Windows
02 MFC - Windows 编程模型
02 MFC - Windows 编程模型
75 0
|
IDE 开发工具 Windows
QT应用编程: windows下QT调用COM组件
QT应用编程: windows下QT调用COM组件
946 0
QT应用编程: windows下QT调用COM组件
|
8月前
|
C++
MFC创建带窗口的DLL
MFC创建带窗口的DLL
155 0
|
8月前
MFC编写DLL窗口功能代码
MFC编写DLL窗口功能代码
39 0
|
Windows
win32&mfc————win32消息机制(二)
win32&mfc————win32消息机制(二)
195 0
|
Windows
win32&mfc————win32消息机制(一)
win32&mfc————win32消息机制(一)
176 0
|
编译器 C++
win32&mfc————win32菜单栏&库(一)
win32&mfc————win32菜单栏&库(一)
144 0
|
存储 Linux C++
win32&mfc————win32菜单栏&库(二)
win32&mfc————win32菜单栏&库(二)
114 0
|
开发工具 Windows
WIN10+QT5.9+VS2017编译RedisDesktopManager
原文:WIN10+QT5.9+VS2015编译RedisDesktopManager 官方源码编译安装说明地址:http://docs.redisdesktop.com/en/latest/install/#build-from-source 最新版安装文件下载地址  https://download.
4643 0