2008-05-24 10:15:06 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file console_func.h Console functions used outside of the console code. */
|
|
|
|
|
|
|
|
#ifndef CONSOLE_FUNC_H
|
|
|
|
#define CONSOLE_FUNC_H
|
|
|
|
|
|
|
|
#include "console_type.h"
|
|
|
|
|
2008-05-24 10:35:15 +00:00
|
|
|
/* console modes */
|
2008-05-24 10:15:06 +00:00
|
|
|
extern IConsoleModes _iconsole_mode;
|
|
|
|
|
|
|
|
/* console functions */
|
|
|
|
void IConsoleInit();
|
|
|
|
void IConsoleFree();
|
|
|
|
void IConsoleClose();
|
|
|
|
|
|
|
|
/* console output */
|
2008-05-24 10:35:15 +00:00
|
|
|
void IConsolePrint(ConsoleColour color_code, const char *string);
|
|
|
|
void CDECL IConsolePrintF(ConsoleColour color_code, const char *s, ...);
|
2008-05-24 10:15:06 +00:00
|
|
|
void IConsoleDebug(const char *dbg, const char *string);
|
|
|
|
|
|
|
|
/* Parser */
|
|
|
|
void IConsoleCmdExec(const char *cmdstr);
|
|
|
|
|
|
|
|
#endif /* CONSOLE_FUNC_H */
|