]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.h
no time to explain, more changes on the path to q3bsp support
[xonotic/darkplaces.git] / console.h
index 6f3a9f3a714733933a8959919766c456b46dcff8..d6aec97ce54bfc3ad930d2f2fcd3764155108935 100644 (file)
--- a/console.h
+++ b/console.h
@@ -8,7 +8,7 @@ of the License, or (at your option) any later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 See the GNU General Public License for more details.
 
@@ -30,15 +30,14 @@ extern qboolean con_initialized;
 extern qbyte *con_chars;
 extern int con_notifylines;            // scan lines to clear for notify lines
 
-void Con_DrawCharacter (int cx, int line, int num);
-
 void Con_CheckResize (void);
+void Con_InitLogging (void);
 void Con_Init (void);
 void Con_DrawConsole (int lines);
-void Con_Print (char *txt);
-void Con_Printf (char *fmt, ...);
-void Con_DPrintf (char *fmt, ...);
-void Con_SafePrintf (char *fmt, ...);
+void Con_Print (const char *txt);
+void Con_Printf (const char *fmt, ...);
+void Con_DPrintf (const char *fmt, ...);
+void Con_SafePrintf (const char *fmt, ...);
 void Con_Clear_f (void);
 void Con_DrawNotify (void);
 void Con_ClearNotify (void);
@@ -52,7 +51,7 @@ void Con_CompleteCommandLine(void);
 
 // Generic libs/util/console.c function to display a list
 // formatted in columns on the console
-void Con_DisplayList(char **list);
+void Con_DisplayList(const char **list);
 
 #endif