📄 stdafx.h
字号:
#ifndef STDAFX_H
#define STDAFX_H
//
// All parts of AxLib are to be single, stand-alone type of files with a header, so all includes will be made in
// the respective files. They all do include stdafx.h to make inclusion in typical VC++ projects simpler.
//
/*
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <tchar.h>
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files:
#include <windows.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
// Local Header Files
*/
#endif STDAFX_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -