comparison plugins/perl/common/Conversation.xs @ 13838:dd00149f6f9b

[gaim-migrate @ 16287] SF Patch #1503847 from Sadrul "This patch "contactizes" the send history in a conversation, ie. with this patch you can get the previously sent messages by pressing ctrl+up/down after switching the account during a contactized conversation." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 19 Jun 2006 06:31:11 +0000
parents ac98e3641df6
children a9ff4499d9ce
comparison
equal deleted inserted replaced
13837:1a095ac881ce 13838:dd00149f6f9b
42 void 42 void
43 gaim_conversations_uninit() 43 gaim_conversations_uninit()
44 44
45 MODULE = Gaim::Conversation PACKAGE = Gaim::Conversation PREFIX = gaim_conversation_ 45 MODULE = Gaim::Conversation PACKAGE = Gaim::Conversation PREFIX = gaim_conversation_
46 PROTOTYPES: ENABLE 46 PROTOTYPES: ENABLE
47
48 void
49 gaim_conversation_get_send_history(conv)
50 Gaim::Conversation conv
51 PREINIT:
52 GList *l;
53 PPCODE:
54 for (l = gaim_conversation_get_send_history(conv); l != NULL; l = l->next) {
55 XPUSHs(sv_2mortal(newSVpv(l->data, 0)));
56 }
57 47
58 void 48 void
59 gaim_conversation_destroy(conv) 49 gaim_conversation_destroy(conv)
60 Gaim::Conversation conv 50 Gaim::Conversation conv
61 51