Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.2 KiB

  1. //===================== Copyright (c) Valve Corporation. All Rights Reserved. ======================
  2. //
  3. // Include file for standard system include files,
  4. // or project specific include files that are used frequently, but
  5. // are changed infrequently
  6. //
  7. //==================================================================================================
  8. #if !defined(AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_)
  9. #define AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. #define NO_THREAD_LOCAL 1
  14. #include "tier0/wchartypes.h"
  15. #include "tier0/vprof.h"
  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. #include <process.h>
  20. #ifndef _AFX_NO_OLE_SUPPORT
  21. #include <afxole.h> // MFC OLE classes
  22. #include <afxodlgs.h> // MFC OLE dialog classes
  23. #include <afxdisp.h> // MFC Automation classes
  24. #endif // _AFX_NO_OLE_SUPPORT
  25. #ifndef _AFX_NO_DB_SUPPORT
  26. #include <afxdb.h> // MFC ODBC database classes
  27. #endif // _AFX_NO_DB_SUPPORT
  28. #ifndef _AFX_NO_DAO_SUPPORT
  29. #include <afxdao.h> // MFC DAO database classes
  30. #endif // _AFX_NO_DAO_SUPPORT
  31. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  32. #ifndef _AFX_NO_AFXCMN_SUPPORT
  33. #include <afxcmn.h> // MFC support for Windows 95 Common Controls
  34. #include <afxpriv.h>
  35. #pragma warning(push)
  36. #pragma warning(disable:4018)
  37. #pragma warning(push, 1)
  38. #pragma warning(disable:4701 4702 4530)
  39. #include <fstream>
  40. #pragma warning(pop)
  41. #pragma warning(pop)
  42. #endif // _AFX_NO_AFXCMN_SUPPORT
  43. #include "tier0/platform.h"
  44. #include <afxdlgs.h>
  45. // Winuser.h defines GetClassName and VPanel.h undefines it, which can cause pandemonium.
  46. #ifdef GetClassName
  47. #undef GetClassName
  48. #endif
  49. // Some VS header files provoke this warning
  50. #pragma warning(disable : 4201) // warning C4201: nonstandard extension used : nameless struct/union
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_)