X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=console.h;h=53711b962a8aa72ab9f25780f0fef648bdc40518;hb=56ea125a48ae3d8fd628559014e68ee83dc5b324;hp=d8b56ed3f639de26abe7dd824e9799a7b4950a0c;hpb=ff46d6ff516fda192c5adc55a5c9b82007545bd2;p=xonotic%2Fdarkplaces.git diff --git a/console.h b/console.h index d8b56ed3..53711b96 100644 --- a/console.h +++ b/console.h @@ -27,20 +27,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. extern int con_totallines; extern int con_backscroll; extern qboolean con_initialized; -extern qbyte *con_chars; void Con_CheckResize (void); -void Con_InitLogging (void); void Con_Init (void); +void Con_Init_Commands (void); void Con_DrawConsole (int lines); void Con_Print(const char *txt); void Con_Printf(const char *fmt, ...); void Con_DPrint(const char *msg); void Con_DPrintf(const char *fmt, ...); -void Con_SafePrint(const char *msg); -void Con_SafePrintf(const char *fmt, ...); -void Con_LogPrint(const char *logfilename, const char *msg); -void Con_LogPrintf(const char *logfilename, const char *fmt, ...); void Con_Clear_f (void); void Con_DrawNotify (void); void Con_ClearNotify (void); @@ -56,5 +51,15 @@ void Con_CompleteCommandLine(void); // formatted in columns on the console void Con_DisplayList(const char **list); + +// +// log +// +void Log_Init (void); +void Log_Close (void); +void Log_Start (void); + +void Log_Printf(const char *logfilename, const char *fmt, ...); + #endif