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
666 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef IDEDICATEDEXPORTS_H
  8. #define IDEDICATEDEXPORTS_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "interface.h"
  13. #include "appframework/iappsystem.h"
  14. abstract_class IDedicatedExports : public IAppSystem
  15. {
  16. public:
  17. virtual void Sys_Printf( char *text ) = 0;
  18. virtual void RunServer() = 0;
  19. virtual bool IsGuiDedicatedServer() = 0;
  20. };
  21. #define VENGINE_DEDICATEDEXPORTS_API_VERSION "VENGINE_DEDICATEDEXPORTS_API_VERSION003"
  22. #endif // IDEDICATEDEXPORTS_H