StdAfx.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (c) 2002-2012 Croteam Ltd.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of version 2 of the GNU General Public License as published by
  4. the Free Software Foundation
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. GNU General Public License for more details.
  9. You should have received a copy of the GNU General Public License along
  10. with this program; if not, write to the Free Software Foundation, Inc.,
  11. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
  12. // stdafx.h : include file for standard system include files,
  13. // or project specific include files that are used frequently, but
  14. // are changed infrequently
  15. //
  16. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  17. #include <afxwin.h> // MFC core and standard components
  18. #include <afxext.h> // MFC extensions
  19. #ifndef _AFX_NO_OLE_SUPPORT
  20. #include <afxole.h> // MFC OLE classes
  21. #include <afxodlgs.h> // MFC OLE dialog classes
  22. #include <afxdisp.h> // MFC OLE automation classes
  23. #endif // _AFX_NO_OLE_SUPPORT
  24. #ifndef _AFX_NO_DB_SUPPORT
  25. #include <afxdb.h> // MFC ODBC database classes
  26. #endif // _AFX_NO_DB_SUPPORT
  27. #ifndef _AFX_NO_DAO_SUPPORT
  28. #include <afxdao.h> // MFC DAO database classes
  29. #endif // _AFX_NO_DAO_SUPPORT
  30. #ifndef _AFX_NO_AFXCMN_SUPPORT
  31. #include <afxcmn.h> // MFC support for Windows Common Controls
  32. #endif // _AFX_NO_AFXCMN_SUPPORT
  33. #include <EngineGUI/EngineGUI.h>
  34. #include <GameMP/Game.h>
  35. #include <GameGUIMP/GameGUI.h>
  36. #include <Engine/GameShell.h>
  37. extern class CGame *_pGame;
  38. /////////////////////////////////////////////////////////////////////////////
  39. #include "resource.h"
  40. #include "ConsoleSymbolsCombo.h"
  41. #include "ActionsListControl.h"
  42. #include "AxisListCtrl.h"
  43. #include "EditConsole.h"
  44. #include "LocalPlayersList.h"
  45. #include "PressKeyEditControl.h"
  46. #include "DlgSelectPlayer.h"
  47. #include "DlgRenameControls.h"
  48. #include "DlgAudioQuality.h"
  49. #include "DlgPlayerAppearance.h"
  50. #include "DlgPlayerControls.h"
  51. #include "DlgPlayerSettings.h"
  52. #include "DlgVideoQuality.h"
  53. #include "DlgConsole.h"
  54. #include "DlgEditButtonAction.h"