comparison mcabber/src/compl.h @ 750:938a8791658c

Add partial completion for the "/event" command
author Mikael Berthe <mikael@lilotux.net>
date Mon, 13 Mar 2006 19:25:55 +0100
parents e98abd3ce28c
children ae23c8826efb
comparison
equal deleted inserted replaced
749:6c633adaae10 750:938a8791658c
16 #define COMPL_MULTILINE (1<<11) 16 #define COMPL_MULTILINE (1<<11)
17 #define COMPL_ROOM (1<<12) 17 #define COMPL_ROOM (1<<12)
18 #define COMPL_RESOURCE (1<<13) 18 #define COMPL_RESOURCE (1<<13)
19 #define COMPL_AUTH (1<<14) 19 #define COMPL_AUTH (1<<14)
20 #define COMPL_REQUEST (1<<15) 20 #define COMPL_REQUEST (1<<15)
21 #define COMPL_EVENTS (1<<16)
21 22
22 void compl_add_category_word(guint, const char *command); 23 void compl_add_category_word(guint, const char *command);
23 void compl_del_category_word(guint categ, const char *word); 24 void compl_del_category_word(guint categ, const char *word);
24 GSList *compl_get_category_list(guint cat_flags); 25 GSList *compl_get_category_list(guint cat_flags);
25 26