comparison plugins/perl/common/BuddyList_Chat.xs @ 9285:7a8aa87164ae

[gaim-migrate @ 10088] Ok I'm done. This started out as shx's patch to make add/remove buddy/buddies take GaimBuddy and GaimGroup's in various places. I think his diff was like 2000 lines and mine is like 5000. I tried to clean up blist.c a bit and make it more uniform. There are some more g_return_if_fail() checks. Removed some code that was deprecated--it's probably been long enough. Removed some #include <multi.h>'s. Make blist.xml saving happen on a timer, like prefs.xml and accounts.xml. Sorry if this doesn't merge cleanly with whatever you're doing. People should really test this a lot. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 15 Jun 2004 02:37:27 +0000
parents 208cb260d7a7
children d47e82ac9918
comparison
equal deleted inserted replaced
9284:fe0291162312 9285:7a8aa87164ae
24 CODE: 24 CODE:
25 RETVAL = gaim_chat_get_group(chat); 25 RETVAL = gaim_chat_get_group(chat);
26 OUTPUT: 26 OUTPUT:
27 RETVAL 27 RETVAL
28 28
29 void
30 gaim_chat_set_setting(chat, key, value)
31 Gaim::BuddyList::Chat chat
32 const char *key
33 const char *value
34
35 const char *
36 gaim_chat_get_setting(chat, key)
37 Gaim::BuddyList::Chat chat
38 const char *key
39 CODE:
40 RETVAL = gaim_chat_get_setting(chat, key);
41 OUTPUT:
42 RETVAL
43
44 Gaim::Account 29 Gaim::Account
45 get_account(chat) 30 get_account(chat)
46 Gaim::BuddyList::Chat chat 31 Gaim::BuddyList::Chat chat
47 CODE: 32 CODE:
48 RETVAL = chat->account; 33 RETVAL = chat->account;