Team Fortress 2 Source Code as on 22/4/2020
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.

40 lines
1016 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. #ifndef VSTDLIB_H
  9. #define VSTDLIB_H
  10. #ifdef _WIN32
  11. #pragma once
  12. #endif
  13. #include "tier0/platform.h"
  14. //-----------------------------------------------------------------------------
  15. // dll export stuff
  16. //-----------------------------------------------------------------------------
  17. #ifdef STATIC_VSTDLIB
  18. #define VSTDLIB_INTERFACE
  19. #define VSTDLIB_OVERLOAD
  20. #define VSTDLIB_CLASS
  21. #define VSTDLIB_GLOBAL
  22. #else
  23. #ifdef VSTDLIB_DLL_EXPORT
  24. #define VSTDLIB_INTERFACE DLL_EXPORT
  25. #define VSTDLIB_OVERLOAD DLL_GLOBAL_EXPORT
  26. #define VSTDLIB_CLASS DLL_CLASS_EXPORT
  27. #define VSTDLIB_GLOBAL DLL_GLOBAL_EXPORT
  28. #else
  29. #define VSTDLIB_INTERFACE DLL_IMPORT
  30. #define VSTDLIB_OVERLOAD DLL_GLOBAL_IMPORT
  31. #define VSTDLIB_CLASS DLL_CLASS_IMPORT
  32. #define VSTDLIB_GLOBAL DLL_GLOBAL_IMPORT
  33. #endif
  34. #endif
  35. #endif // VSTDLIB_H