about summary refs log tree commit diff stats
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h
index f2eef494..a18de2fc 100644
--- a/src/command.h
+++ b/src/command.h
@@ -23,9 +23,18 @@
 #ifndef COMMAND_H
 #define COMMAND_H
 
+// command help strings
+struct cmd_help_t {
+    const gchar *usage;
+    const gchar *short_help;
+};
+
 void command_init(void);
 gboolean process_input(char *inp);
 char * cmd_complete(char *inp);
 void reset_command_completer(void);
+GSList * cmd_get_help_list_basic(void);
+GSList * cmd_get_help_list_settings(void);
+GSList * cmd_get_help_list_status(void);
 
 #endif