科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道MFC中消息映射MESSAGE_MAP宏

MFC中消息映射MESSAGE_MAP宏

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

宏系列深入挖掘系列

作者:ghost 来源:CSDN 2007年9月28日

关键字: MESSAGE_MAP MFC ghost

  • 评论
  • 分享微博
  • 分享邮件

#define DECLARE_MESSAGE_MAP() \
protected: \
 static const AFX_MSGMAP* PASCAL GetThisMessageMap(); \
 virtual const AFX_MSGMAP* GetMessageMap() const; \

#define BEGIN_MESSAGE_MAP(theClass, baseClass) \
 PTM_WARNING_DISABLE \
 const AFX_MSGMAP* theClass::GetMessageMap() const \
  { return GetThisMessageMap(); } \
 const AFX_MSGMAP* PASCAL theClass::GetThisMessageMap() \
 { \
  typedef theClass ThisClass;         \
  typedef baseClass TheBaseClass;        \
  static const AFX_MSGMAP_ENTRY _messageEntries[] =  \
  {

#define END_MESSAGE_MAP() \
  {0, 0, 0, 0, AfxSig_end, (AFX_PMSG)0 } \
 }; \
  static const AFX_MSGMAP messageMap = \
  { &TheBaseClass::GetThisMessageMap, &_messageEntries[0] }; \
  return &messageMap; \
 }          \
 PTM_WARNING_RESTORE

其中AFX_MSGMAP结构为:

struct AFX_MSGMAP
{
 const AFX_MSGMAP* (PASCAL* pfnGetBaseMap)();
 const AFX_MSGMAP_ENTRY* lpEntries;
};

AFX_MSGMAP_ENTRY结构为:

struct AFX_MSGMAP_ENTRY
{
 UINT nMessage;   // windows message
 UINT nCode;      // control code or WM_NOTIFY code
 UINT nID;        // control ID (or 0 for windows messages)
 UINT nLastID;    // used for entries specifying a range of control id's
 UINT_PTR nSig;       // signature type (action) or pointer to message #
 AFX_PMSG pfn;    // routine to call (or special value)
};

此宏存在于头文件AFXWIN.H中。


Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1633050

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章