📄 stdafx.h
字号:
/*****************************************************************************/
/* StdAfx.h Copyright (c) Ladislav Zezula 2003 */
/*---------------------------------------------------------------------------*/
/* Include file for standard system include files, or project specific */
/* include files that are used frequently, but are changed infrequently */
/*---------------------------------------------------------------------------*/
/* Date Ver Who Comment */
/* -------- ---- --- ------- */
/* 03.04.03 1.00 Lad The first version of StdAfx.h */
/*****************************************************************************/
#ifndef __STDAFX_H__
#define __STDAFX_H__
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxcview.h>
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#include <afxpriv.h> // MFC private messages
#include <afxole.h> // MFC OLE support
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
// Include my own loading DLLs for the project
#include "DllLoad.h"
// Include StormLib to the project
#include "../StormLib/StormLib.h"
#ifdef _DEBUG
#pragma comment(lib, "../StormLib/StormLibD.lib")
#else
#pragma comment(lib, "../StormLib/StormLib.lib")
#endif
// Include our main application include file
#include "MPQEditor.h"
// Include our helper functions for working with directories
#include "StormHelp.h"
#endif // __STDAFX_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -