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
commit68bb5a08c50e6c25a26625fc324609d2fd93989a (patch)
treed6b216b690c164e5238e3bf8f6b341a6817c41b8 /src/console_internal.h
parent8b1e7c818945959b5d346812dc8dba4be52c343b (diff)
downloadopenttd-68bb5a08c50e6c25a26625fc324609d2fd93989a.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 */