stdafx.h
来自「研读AxCrypt对加解密的处理方法」· C头文件 代码 · 共 26 行
H
26 行
#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 + =
减小字号Ctrl + -
显示快捷键?