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.

33 lines
883 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 VSTDLIB_DLL_EXPORT
  18. #define VSTDLIB_INTERFACE DLL_EXPORT
  19. #define VSTDLIB_OVERLOAD DLL_GLOBAL_EXPORT
  20. #define VSTDLIB_CLASS DLL_CLASS_EXPORT
  21. #define VSTDLIB_GLOBAL DLL_GLOBAL_EXPORT
  22. #else
  23. #define VSTDLIB_INTERFACE DLL_IMPORT
  24. #define VSTDLIB_OVERLOAD DLL_GLOBAL_IMPORT
  25. #define VSTDLIB_CLASS DLL_CLASS_IMPORT
  26. #define VSTDLIB_GLOBAL DLL_GLOBAL_IMPORT
  27. #endif
  28. #endif // VSTDLIB_H