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.
32 lines
1.2 KiB
32 lines
1.2 KiB
//===== Copyright (c) 2005-2005, Valve Corporation, All rights reserved. ======//
|
|
//
|
|
// Purpose: A higher level link library for general use in the game and tools.
|
|
//
|
|
//===========================================================================//
|
|
|
|
#include "tier3/tier3.h"
|
|
#include "tier0/dbg.h"
|
|
|
|
// NOTE: This has to be the last file included!
|
|
#include "tier0/memdbgon.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// These tier3 libraries must be set by any users of this library.
|
|
// They can be set by calling ConnectTier3Libraries.
|
|
// It is hoped that setting this, and using this library will be the common mechanism for
|
|
// allowing link libraries to access tier3 library interfaces
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Call this to connect to all tier 3 libraries.
|
|
// It's up to the caller to check the globals it cares about to see if ones are missing
|
|
//-----------------------------------------------------------------------------
|
|
void ConnectTier3Libraries( CreateInterfaceFn *pFactoryList, int nFactoryCount )
|
|
{
|
|
}
|
|
|
|
void DisconnectTier3Libraries()
|
|
{
|
|
}
|