summaryrefslogtreecommitdiff
path: root/external/vpc/tier1/tier1.cpp
blob: 187c34e5f1c23bfcae08d2de7c22d3ecf2bb90e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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();
}