console_func.h
Go to the documentation of this file.00001
00002
00005 #ifndef CONSOLE_FUNC_H
00006 #define CONSOLE_FUNC_H
00007
00008 #include "console_type.h"
00009
00010
00011 extern IConsoleModes _iconsole_mode;
00012
00013
00014 void IConsoleInit();
00015 void IConsoleFree();
00016 void IConsoleClose();
00017
00018
00019 void IConsolePrint(ConsoleColour colour_code, const char *string);
00020 void CDECL IConsolePrintF(ConsoleColour colour_code, const char *format, ...) WARN_FORMAT(2, 3);
00021 void IConsoleDebug(const char *dbg, const char *string);
00022 void IConsoleWarning(const char *string);
00023 void IConsoleError(const char *string);
00024
00025
00026 void IConsoleCmdExec(const char *cmdstr);
00027
00028 #endif