diff options
-rw-r--r-- | account.c | 1 | ||||
-rw-r--r-- | bitlbee.h | 1 | ||||
-rw-r--r-- | chat.c | 1 | ||||
-rw-r--r-- | chat.h | 5 | ||||
-rw-r--r-- | irc_commands.c | 1 | ||||
-rw-r--r-- | protocols/nogaim.h | 1 | ||||
-rw-r--r-- | root_commands.c | 1 | ||||
-rw-r--r-- | storage_xml.c | 1 |
8 files changed, 11 insertions, 1 deletions
@@ -26,6 +26,7 @@ #define BITLBEE_CORE #include "bitlbee.h" #include "account.h" +#include "chat.h" account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass ) { @@ -128,7 +128,6 @@ #include "commands.h" #include "account.h" #include "nick.h" -#include "chat.h" #include "conf.h" #include "log.h" #include "ini.h" @@ -24,6 +24,7 @@ */ #include "bitlbee.h" +#include "chat.h" struct chat *chat_add( irc_t *irc, account_t *acc, char *handle, char *channel ) { @@ -23,6 +23,9 @@ Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _CHAT_H +#define _CHAT_H + struct chat { account_t *acc; @@ -44,3 +47,5 @@ int chat_chancmp( char *a, char *b ); int chat_chanok( char *a ); int chat_join( irc_t *irc, struct chat *c, const char *password ); + +#endif diff --git a/irc_commands.c b/irc_commands.c index 044ff62c..74334ee9 100644 --- a/irc_commands.c +++ b/irc_commands.c @@ -26,6 +26,7 @@ #define BITLBEE_CORE #include "bitlbee.h" #include "ipc.h" +#include "chat.h" static void irc_cmd_pass( irc_t *irc, char **cmd ) { diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 1e5df503..ade8c23f 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -43,6 +43,7 @@ #include "proxy.h" #include "query.h" #include "md5.h" +#include "chat.h" #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ diff --git a/root_commands.c b/root_commands.c index 678ee143..5de616fb 100644 --- a/root_commands.c +++ b/root_commands.c @@ -28,6 +28,7 @@ #include "crypting.h" #include "bitlbee.h" #include "help.h" +#include "chat.h" #include <string.h> diff --git a/storage_xml.c b/storage_xml.c index b78c3661..b6745c75 100644 --- a/storage_xml.c +++ b/storage_xml.c @@ -28,6 +28,7 @@ #include "base64.h" #include "arc.h" #include "md5.h" +#include "chat.h" #if GLIB_CHECK_VERSION(2,8,0) #include <glib/gstdio.h> |