diff mcabber/src/compl.h @ 98:f20831f7d349

[/trunk] Changeset 112 by mikael * Completion system enabled for commands. It almost works! ;-)
author mikael
date Wed, 20 Apr 2005 20:35:48 +0000
parents 9e6b7897ec37
children 93dcc4e15d4a
line wrap: on
line diff
--- a/mcabber/src/compl.h	Wed Apr 20 20:30:09 2005 +0000
+++ b/mcabber/src/compl.h	Wed Apr 20 20:35:48 2005 +0000
@@ -10,11 +10,12 @@
 #define COMPL_STATUS    16      // Not implemented yet
 #define COMPL_FILENAME  32      // Not implemented yet
 
-void compl_add_category_word(guint, const char *command);
+void    compl_add_category_word(guint, const char *command);
+GSList *compl_get_category_list(guint cat_flags);
 
-void new_completion(char *prefix, GSList *compl_cat);
-void done_completion(void);
-guint cancel_completion(void);
+void    new_completion(char *prefix, GSList *compl_cat);
+void    done_completion(void);
+guint   cancel_completion(void);
 const char *complete(void);
 
 #endif /* __COMPL_H__ */