Make the vpc actually build a project

libtcmalloc_minimal.so from cstrike linux
This commit is contained in:
2020-12-25 17:29:40 +01:00
parent 8d1c389b3c
commit 0acc2c38ae
134 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,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