📄 define.h
字号:
#ifndef CORE_DEFINE_H
#define CORE_DEFINE_H
#define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料
#define CRTDBG_MAP_ALLOC // 添加内存泄漏检测
#include <windows.h> // Windows 头文件:
#include <stdlib.h>
#include <crtdbg.h> ///添加 _ASSERT 支持
#include <stdio.h>
#include <malloc.h>
#include <memory.h>
//#include <tchar.h>
#include <time.h>
#include <mmsystem.h>
#include <process.h>
#include <direct.h>
#include <time.h>
#include <shellapi.h>
#include <math.h>
#include <vector>
#include <list>
using namespace std; //使用STL模板,因为有个列表不知道长度
#include <atlbase.h> //若不使用这一句,下一行namespace就会失败
using namespace ATL;
#endif //CORE_DEFINE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -