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/tier1/tier1.cpp | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'external/vpc/tier1/tier1.cpp')
| -rw-r--r-- | external/vpc/tier1/tier1.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/external/vpc/tier1/tier1.cpp b/external/vpc/tier1/tier1.cpp new file mode 100644 index 0000000..187c34e --- /dev/null +++ b/external/vpc/tier1/tier1.cpp @@ -0,0 +1,29 @@ +//===== Copyright � 2005-2005, Valve Corporation, All rights reserved. ======// +// +// Purpose: A higher level link library for general use in the game and tools. +// +//===========================================================================// + +#include <tier1/tier1.h> +#include "tier0/dbg.h" +#include "interfaces/interfaces.h" + +// NOTE: This has to be the last file included! +#include "tier0/memdbgon.h" + + + + +//----------------------------------------------------------------------------- +// Call this to connect to all tier 1 libraries. +// It's up to the caller to check the globals it cares about to see if ones are missing +//----------------------------------------------------------------------------- +void ConnectTier1Libraries( CreateInterfaceFn *pFactoryList, int nFactoryCount ) +{ + ConnectInterfaces( pFactoryList, nFactoryCount ); +} + +void DisconnectTier1Libraries() +{ + DisconnectInterfaces(); +} |