stdafx.h

来自「mpq文件的格式就是一种压缩格式」· C头文件 代码 · 共 44 行

H
44
字号
/*****************************************************************************/
/* 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 + =
减小字号Ctrl + -
显示快捷键?