comparison src/protocols/irc/irc.c @ 6350:34c07f5f34a0

[gaim-migrate @ 6849] -Compile warning fixes from The Man (Paco-Paco) -2 memleak fixes from me. One of them leaked the size of a chat message when either sending or receiving, I forgot which (my bad!) -Hopefully make AIM correctly refetch your buddy list when AOL doesn't send it to you the first time -Maybe something else -Chocolate -Vanilla -Strawberry -Napoleon committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 31 Jul 2003 23:21:36 +0000
parents e06e04e44914
children 07b30424146b
comparison
equal deleted inserted replaced
6349:dc89c06af77e 6350:34c07f5f34a0
29 #include "multi.h" 29 #include "multi.h"
30 #include "prpl.h" 30 #include "prpl.h"
31 #include "conversation.h" 31 #include "conversation.h"
32 #include "debug.h" 32 #include "debug.h"
33 #include "blist.h" 33 #include "blist.h"
34 #include "util.h"
34 #include "irc.h" 35 #include "irc.h"
35 36
36 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string); 37 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string);
37 38
38 static const char *irc_blist_icon(GaimAccount *a, struct buddy *b); 39 static const char *irc_blist_icon(GaimAccount *a, struct buddy *b);
106 return g_list_append(NULL, (gpointer)GAIM_AWAY_CUSTOM); 107 return g_list_append(NULL, (gpointer)GAIM_AWAY_CUSTOM);
107 } 108 }
108 109
109 static GList *irc_buddy_menu(GaimConnection *gc, const char *who) 110 static GList *irc_buddy_menu(GaimConnection *gc, const char *who)
110 { 111 {
111 struct irc_conn *irc = gc->proto_data;
112 struct proto_buddy_menu *pbm;
113
114 return NULL; 112 return NULL;
115 } 113 }
116 114
117 static GList *irc_chat_join_info(GaimConnection *gc) 115 static GList *irc_chat_join_info(GaimConnection *gc)
118 { 116 {
427 irc_blist_emblems, 425 irc_blist_emblems,
428 NULL, 426 NULL,
429 NULL, 427 NULL,
430 irc_away_states, 428 irc_away_states,
431 NULL, 429 NULL,
432 NULL, /*irc_buddy_menu,*/ 430 irc_buddy_menu,
433 irc_chat_join_info, 431 irc_chat_join_info,
434 irc_login, 432 irc_login,
435 irc_close, 433 irc_close,
436 irc_im_send, 434 irc_im_send,
437 NULL, 435 NULL,