Mercurial > hg > openttd
view src/console_func.h @ 12411:9fdbb4594b82 draft
(svn r16845) -Codechange: Introduction of constants for describing the bits in a WWT_MATRIX data field.
author | alberth <alberth@openttd.org> |
---|---|
date | Thu, 16 Jul 2009 16:22:23 +0000 |
parents | 86fca539ec7a |
children | bc7926153e19 |
line wrap: on
line source
/* $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 modes */ extern IConsoleModes _iconsole_mode; /* console functions */ void IConsoleInit(); void IConsoleFree(); void IConsoleClose(); /* console output */ void IConsolePrint(ConsoleColour colour_code, const char *string); void CDECL IConsolePrintF(ConsoleColour colour_code, const char *format, ...) WARN_FORMAT(2, 3); void IConsoleDebug(const char *dbg, const char *string); void IConsoleWarning(const char *string); void IConsoleError(const char *string); /* Parser */ void IConsoleCmdExec(const char *cmdstr); #endif /* CONSOLE_FUNC_H */