diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /external/vpc/tier0/pch_tier0.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'external/vpc/tier0/pch_tier0.h')
| -rw-r--r-- | external/vpc/tier0/pch_tier0.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/external/vpc/tier0/pch_tier0.h b/external/vpc/tier0/pch_tier0.h new file mode 100644 index 0000000..6156ad4 --- /dev/null +++ b/external/vpc/tier0/pch_tier0.h @@ -0,0 +1,49 @@ +//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $NoKeywords: $ +//===========================================================================// + + +#if defined( PLATFORM_WINDOWS_PC ) +#define WIN32_LEAN_AND_MEAN +#define _WIN32_WINNT 0x0403 +#include <windows.h> +#elif defined( _PS3 ) +#include <cellstatus.h> +#include <sys/prx.h> +#endif + + + +#include "tier0/platform.h" + +// First include standard libraries +#include "tier0/valve_off.h" +#include <assert.h> +#include <stdio.h> +#include <ctype.h> +#include <math.h> +#include <ctype.h> +#include <limits.h> + +#include <stddef.h> +#ifdef PLATFORM_POSIX +#include <unistd.h> +#include <ctype.h> +#include <limits.h> +#define _MAX_PATH PATH_MAX +#endif + +#include "tier0/valve_on.h" + +#include "tier0/basetypes.h" +#include "tier0/dbgflag.h" +#include "tier0/dbg.h" +#ifdef STEAM +#include "tier0/memhook.h" +#endif +#include "tier0/validator.h" +#include "tier0/fasttimer.h" |