_afximpl.h

来自「《windows程序设计》王艳平版的书籍源代码」· C头文件 代码 · 共 30 行

H
30
字号
////////////////////////////////////////////
// _AFXIMPL.H文件

#ifndef __AFXIMPL_H__
#define __AFXIMPL_H__

#include "_afxwin.h"

// 窗口类的类型标志
#define AFX_WND_REG (0x0001)		// 使用第1位	
#define AFX_WNDFRAMEORVIEW_REG (0x0002) // 使用第2位

#define AFX_WND ("Wnd")
#define AFX_WNDFRAMEORVIEW ("FrameOrView")

// 框架程序注册窗口类时使用的类名,这些变量定义在WINCORE.CPP文件
extern const TCHAR _afxWnd[];
extern const TCHAR _afxWndFrameOrView[];


union MessageMapFunctions
{
	AFX_PMSG pfn;

	void (CWnd::*pfn_vv)(void);
	void (CWnd::*pfn_vw)(UINT);
	int (CWnd::*pfn_is)(LPTSTR);
};

#endif	// __AFXIMPL_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?