📄 stdafx.h
字号:
// stdafx.h : 标准系统包含文件的包含文件,
// 或是常用但不常更改的项目特定的包含文件
//
#define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料
#include <stdio.h>
#include <tchar.h>
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将为显式的
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
#endif
#include <afx.h>
#include <afxwin.h> // MFC 核心组件和标准组件
#include <afxext.h> // MFC 扩展
#include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC 对 Windows 公共控件的支持
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <iostream>
#include "spIPCComm.h"
#include "spSocketServer.h"
#include "wSPQueue.h"
#include "spServerEB.h"
#include "spXMLTag.h"
#include "spConnPool.h"
#include "spRmtMonitor.h"
#include "spBufferWnd.h"
#include <afxsock.h>
using namespace commIPC;
using namespace spBase;
#if defined(_DEBUG)
#pragma comment(lib, "commIPC_D.lib")
#else
#pragma comment(lib, "commIPC.lib")
#endif
#if defined(_DEBUG)
#pragma comment(lib, "spServer_D.lib")
#else
#pragma comment(lib, "spServer.lib")
#endif
#if defined(_DEBUG)
#pragma comment(lib, "spRemote_D.lib")
#else
#pragma comment(lib, "spRemote.lib")
#endif
// TODO: 在此处引用程序要求的附加头
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -