stdafx.h
来自「这是一个串口调试程序,带有源代码的,还是比较好用的.」· C头文件 代码 · 共 23 行
H
23 行
#ifndef __STDAFX_H
#define __STDAFX_H
// Exclude rarely-used stuff from Windows headers
#define VC_EXTRALEAN
// Include MFC header-files
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxcmn.h> // MFC support for Windows Common Controls
//////////////////////////////////////////////////////////////////////
// Disable warning C4711: function selected for automatic inline
// expansion, which is good and not worth reporting.
#pragma warning(disable: 4711)
#endif // __STDAFX_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?