comparison mcabber/mcabber/compl.h @ 1756:e2c084204583

Add (optional) suffix after nick completion in Multi-User Chats New option: 'completion_muc_suffix' Closes issue #20 in mcabber-crew BTS.
author Mikael Berthe <mikael@lilotux.net>
date Sat, 13 Mar 2010 13:18:07 +0100
parents 41c26b7d2890
children e6d355e50d7a
comparison
equal deleted inserted replaced
1755:84487d78d0ea 1756:e2c084204583
31 31
32 guint compl_new_category (void); 32 guint compl_new_category (void);
33 void compl_del_category (guint id); 33 void compl_del_category (guint id);
34 #endif 34 #endif
35 35
36 void compl_add_category_word(guint, const char *command); 36 void compl_add_category_word(guint, const gchar *command);
37 void compl_del_category_word(guint categ, const char *word); 37 void compl_del_category_word(guint categ, const gchar *word);
38 GSList *compl_get_category_list(guint cat_flags, guint *dynlist); 38 GSList *compl_get_category_list(guint cat_flags, guint *dynlist);
39 39
40 guint new_completion(char *prefix, GSList *compl_cat); 40 guint new_completion(const gchar *prefix, GSList *compl_cat,
41 const gchar *suffix);
41 void done_completion(void); 42 void done_completion(void);
42 guint cancel_completion(void); 43 guint cancel_completion(void);
43 const char *complete(void); 44 const char *complete(void);
44 45
45 #endif /* __MCABBER_COMPL_H__ */ 46 #endif /* __MCABBER_COMPL_H__ */