Mercurial > pidgin.yaz
annotate plugins/perl/common/BuddyList_Chat.xs @ 9251:45d2ad4ac1c1
[gaim-migrate @ 10050]
Stu Tomlinson has provided a nice patch to move the separation of IM
and Chat windows back into the core from the extplacement plugin.
It's awesome to have crazy patch writers, and even better to have
crazy patch writers who write what I want to write before I do it,
thus saving me the effort.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Wed, 09 Jun 2004 20:47:07 +0000 |
parents | 208cb260d7a7 |
children | 7a8aa87164ae |
rev | line source |
---|---|
6542 | 1 #include "module.h" |
2 | |
3 MODULE = Gaim::BuddyList::Chat PACKAGE = Gaim::BuddyList::Chat PREFIX = gaim_chat_ | |
4 PROTOTYPES: ENABLE | |
5 | |
6 void | |
7 set_alias(chat, alias) | |
8 Gaim::BuddyList::Chat chat | |
9 const char *alias | |
10 CODE: | |
11 gaim_blist_alias_chat(chat, alias); | |
12 | |
13 const char * | |
14 gaim_chat_get_display_name(chat) | |
15 Gaim::BuddyList::Chat chat | |
6699
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
16 CODE: |
7125 | 17 RETVAL = gaim_chat_get_display_name(chat); |
6699
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
18 OUTPUT: |
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
19 RETVAL |
6542 | 20 |
21 Gaim::BuddyList::Group | |
7125 | 22 gaim_chat_get_group(chat) |
6542 | 23 Gaim::BuddyList::Chat chat |
24 CODE: | |
7125 | 25 RETVAL = gaim_chat_get_group(chat); |
6542 | 26 OUTPUT: |
27 RETVAL | |
28 | |
29 void | |
7125 | 30 gaim_chat_set_setting(chat, key, value) |
6542 | 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 | |
6699
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
39 CODE: |
7125 | 40 RETVAL = gaim_chat_get_setting(chat, key); |
6699
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
41 OUTPUT: |
12169973c663
[gaim-migrate @ 7225]
Christian Hammond <chipx86@chipx86.com>
parents:
6542
diff
changeset
|
42 RETVAL |
6542 | 43 |
44 Gaim::Account | |
45 get_account(chat) | |
46 Gaim::BuddyList::Chat chat | |
47 CODE: | |
48 RETVAL = chat->account; | |
49 OUTPUT: | |
50 RETVAL |