⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _afximpl.h

📁 《windows程序设计》王艳平版的书籍源代码
💻 H
字号:
////////////////////////////////////////////
// _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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -