diff -r d7f26538c24c -r 14690e624e9d mcabber/src/compl.h --- a/mcabber/src/compl.h Sun Oct 11 16:01:31 2009 +0200 +++ b/mcabber/src/compl.h Sun Oct 11 16:01:52 2009 +0200 @@ -3,6 +3,8 @@ #include +#include "config.h" + #define COMPL_CMD (1U<<0) #define COMPL_JID (1U<<1) #define COMPL_URLJID (1U<<2) // Not implemented yet @@ -24,6 +26,12 @@ #define COMPL_COLOR (1U<<18) #define COMPL_OTR (1U<<19) #define COMPL_OTRPOLICY (1U<<20) +#ifdef MODULES_ENABLE +#define COMPL_MAX_BUILTIN (1U<<20) + +guint compl_new_category (void); +void compl_del_category (guint id); +#endif void compl_add_category_word(guint, const char *command); void compl_del_category_word(guint categ, const char *word);