summaryrefslogtreecommitdiff
path: root/src/console_internal.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-24 11:55:25 +0000
committerrubidium <rubidium@openttd.org>2008-05-24 11:55:25 +0000
commiteb3347e9d85220e8c9573a0b672aedf2a7e510cd (patch)
treed6b216b690c164e5238e3bf8f6b341a6817c41b8 /src/console_internal.h
parent9da2cd6e022b1a966c7fb7e51ddcee32790a1b48 (diff)
downloadopenttd-eb3347e9d85220e8c9573a0b672aedf2a7e510cd.tar.xz
(svn r13231) -Codechange: split the core console code and the console GUI.
Diffstat (limited to 'src/console_internal.h')
-rw-r--r--src/console_internal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/console_internal.h b/src/console_internal.h
index f4884e3da..3d6fffb93 100644
--- a/src/console_internal.h
+++ b/src/console_internal.h
@@ -135,4 +135,9 @@ void IConsoleVarProcAdd(const char *name, IConsoleCmdProc *proc);
/* Supporting functions */
bool GetArgumentInteger(uint32 *value, const char *arg);
-#endif /* CONSOLE_H */
+
+void IConsoleGUIInit();
+void IConsoleGUIFree();
+void IConsoleGUIPrint(ConsoleColour color_code, char *string);
+
+#endif /* CONSOLE_INTERNAL_H */