Changeset b75acf6
- Timestamp:
- 2009-10-22T21:55:23Z (15 years ago)
- Branches:
- master
- Children:
- 4cf80bb
- Parents:
- 2e44b1f
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
account.c
r2e44b1f rb75acf6 27 27 #include "bitlbee.h" 28 28 #include "account.h" 29 #include "chat.h" 29 30 30 31 account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass ) -
bitlbee.h
r2e44b1f rb75acf6 129 129 #include "account.h" 130 130 #include "nick.h" 131 #include "chat.h"132 131 #include "conf.h" 133 132 #include "log.h" -
chat.c
r2e44b1f rb75acf6 25 25 26 26 #include "bitlbee.h" 27 #include "chat.h" 27 28 28 29 struct chat *chat_add( irc_t *irc, account_t *acc, char *handle, char *channel ) -
chat.h
r2e44b1f rb75acf6 24 24 */ 25 25 26 #ifndef _CHAT_H 27 #define _CHAT_H 28 26 29 struct chat 27 30 { … … 45 48 46 49 int chat_join( irc_t *irc, struct chat *c, const char *password ); 50 51 #endif -
irc_commands.c
r2e44b1f rb75acf6 27 27 #include "bitlbee.h" 28 28 #include "ipc.h" 29 #include "chat.h" 29 30 30 31 static void irc_cmd_pass( irc_t *irc, char **cmd ) -
protocols/nogaim.h
r2e44b1f rb75acf6 44 44 #include "query.h" 45 45 #include "md5.h" 46 #include "chat.h" 46 47 47 48 #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ -
root_commands.c
r2e44b1f rb75acf6 29 29 #include "bitlbee.h" 30 30 #include "help.h" 31 #include "chat.h" 31 32 32 33 #include <string.h> -
storage_xml.c
r2e44b1f rb75acf6 29 29 #include "arc.h" 30 30 #include "md5.h" 31 #include "chat.h" 31 32 32 33 #if GLIB_CHECK_VERSION(2,8,0)
Note: See TracChangeset
for help on using the changeset viewer.