Mercurial > pidgin
annotate plugins/perl/common/BuddyList_Chat.xs @ 10062:b6178d85d132
[gaim-migrate @ 11037]
marv has mentioned several times in #gaim that we were never using
GTK_WORD_WRAP_CHAR because we were checking if an enum is #ifdef
This fixes that.
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sun, 26 Sep 2004 16:17:09 +0000 |
parents | 7a8aa87164ae |
children | d47e82ac9918 |
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 Gaim::Account | |
30 get_account(chat) | |
31 Gaim::BuddyList::Chat chat | |
32 CODE: | |
33 RETVAL = chat->account; | |
34 OUTPUT: | |
35 RETVAL |