comparison src/signals.c @ 10104:60db14d54914

[gaim-migrate @ 11131] "This patch that makes received-im-msg and received-chat-msg signals correspond with each other. My motivation was to add flags to received-chat-msg, but I also added conv to received-im-msg to make the signals match each other." -- Nathan Fredrickson (noif) I also updated the receiving-im-msg and receiving-chat-msg signals to match. Now I can finally reject patch 909745 with "this should be a plugin", which I've wanted to be able to say for a while. Yay :) committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 16 Oct 2004 15:07:22 +0000
parents 676cf082d29c
children edf8c0a8e60b
comparison
equal deleted inserted replaced
10103:a9521c791afe 10104:60db14d54914
684 684
685 ((void (*)(void *, void *, void *, guint, void *))cb)(arg1, arg2, arg3, arg4, data); 685 ((void (*)(void *, void *, void *, guint, void *))cb)(arg1, arg2, arg3, arg4, data);
686 } 686 }
687 687
688 void 688 void
689 gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT(GaimCallback cb,
690 va_list args,
691 void *data,
692 void **return_val)
693 {
694 void *arg1 = va_arg(args, void *);
695 void *arg2 = va_arg(args, void *);
696 void *arg3 = va_arg(args, void *);
697 void *arg4 = va_arg(args, void *);
698 guint arg5 = va_arg(args, guint);
699
700 ((void (*)(void *, void *, void *, void *, guint, void *))cb)(arg1, arg2, arg3, arg4, arg5, data);
701 }
702
703 void
689 gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT(GaimCallback cb, 704 gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT(GaimCallback cb,
690 va_list args, 705 va_list args,
691 void *data, 706 void *data,
692 void **return_val) 707 void **return_val)
693 { 708 {