From 6c20f77330468a954ca2abcd396ab4135ea176fd Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 24 May 2008 10:15:06 +0000 Subject: (svn r13228) -Codechange: split console.h. --- src/console_func.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/console_func.h (limited to 'src/console_func.h') diff --git a/src/console_func.h b/src/console_func.h new file mode 100644 index 000000000..4ec762bdf --- /dev/null +++ b/src/console_func.h @@ -0,0 +1,31 @@ +/* $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" + +/* console colors/modes */ +extern byte _icolour_def; +extern byte _icolour_err; +extern byte _icolour_warn; +extern byte _icolour_dbg; +extern byte _icolour_cmd; +extern IConsoleModes _iconsole_mode; + +/* console functions */ +void IConsoleInit(); +void IConsoleFree(); +void IConsoleClose(); + +/* console output */ +void IConsolePrint(uint16 color_code, const char *string); +void CDECL IConsolePrintF(uint16 color_code, const char *s, ...); +void IConsoleDebug(const char *dbg, const char *string); + +/* Parser */ +void IConsoleCmdExec(const char *cmdstr); + +#endif /* CONSOLE_FUNC_H */ -- cgit v1.2.3-54-g00ecf