Mercurial > pidgin
diff plugins/perl/common/Conversation.xs @ 11170:0e9e2b923d09
[gaim-migrate @ 13271]
Fixed some bugs and made some additions to the XSUBS. Added some of my test scripts which are incomplete, but mostly functional. GaimPluginPrefs and GaimGtkPluginPrefs--using evals to do the Gtk widgets with gtk2-perl--work. Plugin actions can now be added, but only one for now.
committer: Tailor Script <tailor@pidgin.im>
| author | John H. Kelm <johnkelm@gmail.com> |
|---|---|
| date | Fri, 29 Jul 2005 13:38:00 +0000 |
| parents | 4315bb5f427b |
| children | b284c703d398 |
line wrap: on
line diff
--- a/plugins/perl/common/Conversation.xs Fri Jul 29 05:05:52 2005 +0000 +++ b/plugins/perl/common/Conversation.xs Fri Jul 29 13:38:00 2005 +0000 @@ -68,7 +68,10 @@ OUTPUT: RETVAL - +int +gaim_conv_window_add_conversation(win, conv) + Gaim::ConvWindow win + Gaim::Conversation conv MODULE = Gaim::Conv PACKAGE = Gaim::Conv PREFIX = gaim_conversation_ @@ -225,9 +228,18 @@ gaim_conversation_update(conv, type) Gaim::Conversation conv Gaim::ConvUpdateType type - + +Gaim::Conversation +gaim_conversation_new(type, account, name) + Gaim::ConversationType type + Gaim::Account account + const char *name - +void +gaim_conversation_set_account(conv, account); + Gaim::Conversation conv + Gaim::Account account + MODULE = Gaim::Conv PACKAGE = Gaim::Conv::IM PREFIX = gaim_conv_im_ @@ -300,9 +312,13 @@ Gaim::Conversation::IM im const char *message - - - +void +gaim_conv_im_write(im, who, message, flags, mtime) + Gaim::Conversation::IM im + const char *who + const char *message + Gaim::MessageFlags flags + time_t mtime MODULE = Gaim::Conv PACKAGE = Gaim::Conv PREFIX = gaim_conv_
