Counter Strike : Global Offensive Source Code
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.

29 lines
905 B

  1. //===== Copyright � 2005-2005, Valve Corporation, All rights reserved. ======//
  2. //
  3. // Purpose: A higher level link library for general use in the game and tools.
  4. //
  5. //===========================================================================//
  6. #include <tier1/tier1.h>
  7. #include "tier0/dbg.h"
  8. #include "interfaces/interfaces.h"
  9. // NOTE: This has to be the last file included!
  10. #include "tier0/memdbgon.h"
  11. //-----------------------------------------------------------------------------
  12. // Call this to connect to all tier 1 libraries.
  13. // It's up to the caller to check the globals it cares about to see if ones are missing
  14. //-----------------------------------------------------------------------------
  15. void ConnectTier1Libraries( CreateInterfaceFn *pFactoryList, int nFactoryCount )
  16. {
  17. ConnectInterfaces( pFactoryList, nFactoryCount );
  18. }
  19. void DisconnectTier1Libraries()
  20. {
  21. DisconnectInterfaces();
  22. }