WTL 出现的SetMsgHandled和IsMsgHandled 错误
江西理工 FangSH 2010/8/26
在学WTL第二部界面基类时程序出现了一个错误 如下:
mainfrm.cpp
e:\编程文档\wtl\wtl_study_fangsh\wtlclock\mainfrm.h(37) : error C2065: 'SetMsgHandled' : undeclared identifier
e:\编程文档\wtl\wtl_study_fangsh\wtlclock\mainfrm.h(37) : error C2065: 'IsMsgHandled' : undeclared identifier
Generating Code...
Compiling...
WTLClock.cpp
e:\编程文档\wtl\wtl_study_fangsh\wtlclock\mainfrm.h(37) : error C2065: 'SetMsgHandled' : undeclared identifier
e:\编程文档\wtl\wtl_study_fangsh\wtlclock\mainfrm.h(37) : error C2065: 'IsMsgHandled' : undeclared identifier
错误定位到:
网有一些说法 试好久都没能改过来。幸好在有一个外国网站http://www.hydrogenaudio.org/forums/lofiversion/index.php/t78967.html 发现了自己的问题原来
BEGIN_MSG_MAP(CMainFrame)
……
END_MSG_MAP()
应该是
BEGIN_MSG_MAP_EX(CMainFrame)
……
END_MSG_MAP()
MFC程序员的WTL指南——界面基类中WTL 对消息映射的增强说到:
将Win32 API通过消息传递过来的WPARAM和LPARAM数据还原出来是一件麻烦的事情并且很容易出错,不幸得是ATL并没有为我们提供更多的帮助,我们仍然需要从消息中还原这些数据,当然WM_COMMAND和WM_NOTIFY消息除外。但是WTL的出现拯救了这一切!
WTL的增强消息映射宏定义在atlcrack.h中。(这个名字来源于“消息解密者”,是一个与windowsx.h的宏所使用的相同术语)首先将BEGIN_MSG_MAP改为BEGIN_MSG_MAP_EX,带_EX的版本产生“解密”消息的代码。
而另一种方法是:在stdafx.h文件得结尾处添加这两行代码来解决这个问题:
#undef BEGIN_MSG_MAP
#define BEGIN_MSG_MAP(x) BEGIN_MSG_MAP_EX(x)
是我自己太粗心了…………