comparison mcabber/src/compl.h @ 501:7c1ca00070e8

Add COMPL_RESOURCE (resource completion category)
author Mikael Berthe <mikael@lilotux.net>
date Wed, 26 Oct 2005 23:46:53 +0200
parents 03bb57383cea
children 8b3db0b555a1
comparison
equal deleted inserted replaced
500:357086193b02 501:7c1ca00070e8
13 #define COMPL_BUFFER (1<<8) 13 #define COMPL_BUFFER (1<<8)
14 #define COMPL_GROUP (1<<9) 14 #define COMPL_GROUP (1<<9)
15 #define COMPL_GROUPNAME (1<<10) 15 #define COMPL_GROUPNAME (1<<10)
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 19
19 void compl_add_category_word(guint, const char *command); 20 void compl_add_category_word(guint, const char *command);
20 void compl_del_category_word(guint categ, const char *word); 21 void compl_del_category_word(guint categ, const char *word);
21 GSList *compl_get_category_list(guint cat_flags); 22 GSList *compl_get_category_list(guint cat_flags);
22 23