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.

32 lines
1.2 KiB

  1. //===== Copyright (c) 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 "tier3/tier3.h"
  7. #include "tier0/dbg.h"
  8. // NOTE: This has to be the last file included!
  9. #include "tier0/memdbgon.h"
  10. //-----------------------------------------------------------------------------
  11. // These tier3 libraries must be set by any users of this library.
  12. // They can be set by calling ConnectTier3Libraries.
  13. // It is hoped that setting this, and using this library will be the common mechanism for
  14. // allowing link libraries to access tier3 library interfaces
  15. //-----------------------------------------------------------------------------
  16. //-----------------------------------------------------------------------------
  17. // Call this to connect to all tier 3 libraries.
  18. // It's up to the caller to check the globals it cares about to see if ones are missing
  19. //-----------------------------------------------------------------------------
  20. void ConnectTier3Libraries( CreateInterfaceFn *pFactoryList, int nFactoryCount )
  21. {
  22. }
  23. void DisconnectTier3Libraries()
  24. {
  25. }