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