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.

30 lines
660 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // conproc.h -- support for external server monitoring programs
  9. #ifndef INC_CONPROCH
  10. #define INC_CONPROCH
  11. #define CCOM_WRITE_TEXT 0x2
  12. // Param1 : Text
  13. #define CCOM_GET_TEXT 0x3
  14. // Param1 : Begin line
  15. // Param2 : End line
  16. #define CCOM_GET_SCR_LINES 0x4
  17. // No params
  18. #define CCOM_SET_SCR_LINES 0x5
  19. // Param1 : Number of lines
  20. void InitConProc ( void );
  21. void DeinitConProc ( void );
  22. void WriteStatusText( char *psz );
  23. #endif // !INC_CONPROCH