comparison plugins/perl/common/BuddyList_Chat.xs @ 7125:208cb260d7a7

[gaim-migrate @ 7692] as long as we're pissing off plugin developers... committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 02 Oct 2003 05:26:40 +0000
parents b0913ab92893
children 7a8aa87164ae
comparison
equal deleted inserted replaced
7124:be4ca65b3b48 7125:208cb260d7a7
12 12
13 const char * 13 const char *
14 gaim_chat_get_display_name(chat) 14 gaim_chat_get_display_name(chat)
15 Gaim::BuddyList::Chat chat 15 Gaim::BuddyList::Chat chat
16 CODE: 16 CODE:
17 RETVAL = gaim_blist_chat_get_display_name(chat); 17 RETVAL = gaim_chat_get_display_name(chat);
18 OUTPUT: 18 OUTPUT:
19 RETVAL 19 RETVAL
20 20
21 Gaim::BuddyList::Group 21 Gaim::BuddyList::Group
22 gaim_blist_chat_get_group(chat) 22 gaim_chat_get_group(chat)
23 Gaim::BuddyList::Chat chat 23 Gaim::BuddyList::Chat chat
24 CODE: 24 CODE:
25 RETVAL = gaim_blist_chat_get_group(chat); 25 RETVAL = gaim_chat_get_group(chat);
26 OUTPUT: 26 OUTPUT:
27 RETVAL 27 RETVAL
28 28
29 void 29 void
30 gaim_blist_chat_set_setting(chat, key, value) 30 gaim_chat_set_setting(chat, key, value)
31 Gaim::BuddyList::Chat chat 31 Gaim::BuddyList::Chat chat
32 const char *key 32 const char *key
33 const char *value 33 const char *value
34 34
35 const char * 35 const char *
36 gaim_chat_get_setting(chat, key) 36 gaim_chat_get_setting(chat, key)
37 Gaim::BuddyList::Chat chat 37 Gaim::BuddyList::Chat chat
38 const char *key 38 const char *key
39 CODE: 39 CODE:
40 RETVAL = gaim_blist_chat_get_setting(chat, key); 40 RETVAL = gaim_chat_get_setting(chat, key);
41 OUTPUT: 41 OUTPUT:
42 RETVAL 42 RETVAL
43 43
44 Gaim::Account 44 Gaim::Account
45 get_account(chat) 45 get_account(chat)