diff mcabber/src/compl.h @ 1607:14690e624e9d

Add modules
author Myhailo Danylenko <isbear@ukrpost.net>
date Sun, 11 Oct 2009 16:01:52 +0200
parents 3b338a5c01fc
children
line wrap: on
line diff
--- 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 <glib.h>
 
+#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);