Team Fortress 2 Source Code as on 22/4/2020
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.

71 lines
2.0 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // stdafx.h : include file for standard system include files,
  9. // or project specific include files that are used frequently, but
  10. // are changed infrequently
  11. //
  12. #if !defined(AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_)
  13. #define AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. #define NO_THREAD_LOCAL 1
  18. #include "tier0/wchartypes.h"
  19. #include "tier0/vprof.h"
  20. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  21. #include <afxwin.h> // MFC core and standard components
  22. #include <afxext.h> // MFC extensions
  23. #include <process.h>
  24. #ifndef _AFX_NO_OLE_SUPPORT
  25. #include <afxole.h> // MFC OLE classes
  26. #include <afxodlgs.h> // MFC OLE dialog classes
  27. #include <afxdisp.h> // MFC Automation classes
  28. #endif // _AFX_NO_OLE_SUPPORT
  29. #ifndef _AFX_NO_DB_SUPPORT
  30. #include <afxdb.h> // MFC ODBC database classes
  31. #endif // _AFX_NO_DB_SUPPORT
  32. #ifndef _AFX_NO_DAO_SUPPORT
  33. #include <afxdao.h> // MFC DAO database classes
  34. #endif // _AFX_NO_DAO_SUPPORT
  35. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  36. #ifndef _AFX_NO_AFXCMN_SUPPORT
  37. #include <afxcmn.h> // MFC support for Windows 95 Common Controls
  38. #include <afxpriv.h>
  39. #pragma warning(push)
  40. #pragma warning(disable:4018)
  41. #pragma warning(push, 1)
  42. #pragma warning(disable:4701 4702 4530)
  43. #include <fstream>
  44. #pragma warning(pop)
  45. #pragma warning(pop)
  46. #endif // _AFX_NO_AFXCMN_SUPPORT
  47. #include "tier0/platform.h"
  48. // Some VS header files provoke this warning
  49. #pragma warning(disable : 4201) // warning C4201: nonstandard extension used : nameless struct/union
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_STDAFX_H__2871A74F_7D2F_4026_9DB0_DBACAFB3B7F5__INCLUDED_)