]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.h
forgot to put a newline at the end of the file
[xonotic/darkplaces.git] / console.h
index ef01f008ad3936d4ef8eeb7f8f764930a9ed7319..1ba74e1eb6bf172cb6c35f6a6020184af4e32ee7 100644 (file)
--- a/console.h
+++ b/console.h
@@ -42,5 +42,13 @@ void Con_DrawNotify (void);
 void Con_ClearNotify (void);
 void Con_ToggleConsole_f (void);
 
-void Con_NotifyBox (char *text);       // during startup for sound / cd warnings
+// wrapper function to attempt to either complete the command line
+// or to list possible matches grouped by type
+// (i.e. will display possible variables, aliases, commands
+// that match what they've typed so far)
+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);