QuakeGod
2023-10-23 4cda72771765720a6a8721bd8844945c2403afe6
提交 | 用户 | age
0a20f7 1 #pragma once
Q 2
418cb3 3 #ifndef VC_EXTRALEAN
Q 4 #define VC_EXTRALEAN            // 从 Windows 头中排除极少使用的资料
5 #endif
6
7 #include "targetver.h"
8
9 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // 某些 CString 构造函数将是显式的
10
11 #include <afxwin.h>         // MFC 核心组件和标准组件
12 #include <afxext.h>         // MFC 扩展
13
14 #ifndef _AFX_NO_OLE_SUPPORT
15 #include <afxole.h>         // MFC OLE 类
16 #include <afxodlgs.h>       // MFC OLE 对话框类
17 #include <afxdisp.h>        // MFC 自动化类
18 #endif // _AFX_NO_OLE_SUPPORT
19
20 #ifndef _AFX_NO_DB_SUPPORT
21 #include <afxdb.h>                      // MFC ODBC 数据库类
22 #endif // _AFX_NO_DB_SUPPORT
23
24 #ifndef _AFX_NO_DAO_SUPPORT
25 #include <afxdao.h>                     // MFC DAO 数据库类
26 #endif // _AFX_NO_DAO_SUPPORT
27
28 #ifndef _AFX_NO_OLE_SUPPORT
29 #include <afxdtctl.h>           // MFC 对 Internet Explorer 4 公共控件的支持
30 #endif
31 #ifndef _AFX_NO_AFXCMN_SUPPORT
32 #include <afxcmn.h>                     // MFC 对 Windows 公共控件的支持
33 #endif // _AFX_NO_AFXCMN_SUPPORT
34
35 #include <afxsock.h>            // MFC 套接字扩展
36