diff options
author | rubidium <rubidium@openttd.org> | 2008-05-24 10:15:06 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-24 10:15:06 +0000 |
commit | bf3b61cfa3658dd5d4ca55f635c936ca4c4b225e (patch) | |
tree | 72e249a3b2b47077b3e38cac1908b6058e9a94f8 /src/console_func.h | |
parent | 5f625acb1ad411a0e7206979e42c6363e1ff4d98 (diff) | |
download | openttd-bf3b61cfa3658dd5d4ca55f635c936ca4c4b225e.tar.xz |
(svn r13228) -Codechange: split console.h.
Diffstat (limited to 'src/console_func.h')
-rw-r--r-- | src/console_func.h | 31 |
1 files changed, 31 insertions, 0 deletions
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 */ |