blob: 44620468e1cf8cb703337077cafc948a9f90d347 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef DEBUGCONSOLE_INTERFACE_H
#define DEBUGCONSOLE_INTERFACE_H
#pragma once
#include "interface.h"
//-----------------------------------------------------------------------------
// Purpose: Debugging console interface
//-----------------------------------------------------------------------------
class IDebugConsole : public IBaseInterface
{
public:
virtual void Initialize( const char *consoleName, int logLevel ) = 0;
virtual void Print( int severity, PRINTF_FORMAT_STRING const char *msgDescriptor, ... ) = 0;
// gets a line of command input
// returns true if anything returned, false otherwise
virtual bool GetInput(char *buffer, int bufferSize) = 0;
};
#define DEBUGCONSOLE_INTERFACE_VERSION "DebugConsole001"
#endif // DEBUGCONSOLE_INTERFACE_H
|