--- a/plugins/perl/common/Conversation_IM.xs Thu Oct 02 03:04:03 2003 +0000 +++ b/plugins/perl/common/Conversation_IM.xs Thu Oct 02 03:07:18 2003 +0000 @@ -1,6 +1,6 @@ #include "module.h" -MODULE = Gaim::Conversation::IM PACKAGE = Gaim::Conversation::IM PREFIX = gaim_im_ +MODULE = Gaim::Conversation::IM PACKAGE = Gaim::Conversation::IM PREFIX = gaim_conv_im_ PROTOTYPES: ENABLE Gaim::Conversation::IM @@ -8,7 +8,7 @@ Gaim::Account account const char *name CODE: - RETVAL = GAIM_IM(gaim_conversation_new(GAIM_CONV_IM, account, name)); + RETVAL = GAIM_CONV_IM(gaim_conversation_new(GAIM_CONV_IM, account, name)); OUTPUT: RETVAL @@ -16,24 +16,24 @@ DESTROY(im) Gaim::Conversation::IM im CODE: - gaim_conversation_destroy(gaim_im_get_conversation(im)); + gaim_conversation_destroy(gaim_conv_im_get_conversation(im)); Gaim::Conversation -gaim_im_get_conversation(im) +gaim_conv_im_get_conversation(im) Gaim::Conversation::IM im void -gaim_im_write(im, who, message, flags) +gaim_conv_im_write(im, who, message, flags) Gaim::Conversation::IM im const char *who const char *message int flags CODE: - gaim_im_write(im, who, message, flags, time(NULL)); + gaim_conv_im_write(im, who, message, flags, time(NULL)); void -gaim_im_send(im, message) +gaim_conv_im_send(im, message) Gaim::Conversation::IM im const char *message @@ -48,6 +48,6 @@ PPCODE: for (l = gaim_get_ims(); l != NULL; l = l->next) { - XPUSHs(sv_2mortal(gaim_perl_bless_object(GAIM_IM(l->data), + XPUSHs(sv_2mortal(gaim_perl_bless_object(GAIM_CONV_IM(l->data), "Gaim::Conversation"))); }