comparison src/plugins.c @ 2273:0b5c3338fa3d

[gaim-migrate @ 2283] One of the girls on the floor of my sister's dorm lost both her parents when their plane was hijacked and crashed into the World Trade Center. my girlfriend's boss's sister-in-law's brother died when the building collapsed. my parents flew to atlanta on monday; they're safe but currently stranded there. they had planned on flying to Raleigh, NC today but now are just hoping to be able to fly home soon. how did this happen? committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 12 Sep 2001 21:29:32 +0000
parents eb2cadb18479
children f2150073cd41
comparison
equal deleted inserted replaced
2272:4ecc9a9a75d8 2273:0b5c3338fa3d
770 void (*function)(void *) = g->function; 770 void (*function)(void *) = g->function;
771 (*function)(g->data); 771 (*function)(g->data);
772 } 772 }
773 break; 773 break;
774 774
775 /* struct gaim_connection *, char **, char ** */ 775 /* struct gaim_connection *, char **, char **, guint32 */
776 case event_im_recv: 776 case event_im_recv:
777 { 777 {
778 void (*function)(struct gaim_connection *, char **, char **, 778 void (*function)(struct gaim_connection *, char **, char **,
779 void *) = g->function; 779 guint32, void *) = g->function;
780 (*function)(arg1, arg2, arg3, g->data); 780 (*function)(arg1, arg2, arg3, (guint32)arg4, g->data);
781 } 781 }
782 break; 782 break;
783 783
784 /* struct gaim_connection *, char *, char ** */ 784 /* struct gaim_connection *, char *, char ** */
785 case event_im_send: 785 case event_im_send:
830 /* struct gaim_connection *, char *, char * */ 830 /* struct gaim_connection *, char *, char * */
831 case event_chat_buddy_join: 831 case event_chat_buddy_join:
832 case event_chat_buddy_leave: 832 case event_chat_buddy_leave:
833 case event_away: 833 case event_away:
834 case event_back: 834 case event_back:
835 case event_im_displayed_rcvd:
836 { 835 {
837 void (*function)(struct gaim_connection *, char *, char *, 836 void (*function)(struct gaim_connection *, char *, char *,
838 void *) = g->function; 837 void *) = g->function;
839 (*function)(arg1, arg2, arg3, g->data); 838 (*function)(arg1, arg2, arg3, g->data);
839 }
840 break;
841
842 /* struct gaim_connection *, char *, char *, guint32 */
843 case event_im_displayed_rcvd:
844 {
845 void (*function)(struct gaim_connection *, char *, char *,
846 guint32, void *) = g->function;
847 (*function)(arg1, arg2, arg3, (guint32)arg4, g->data);
840 } 848 }
841 break; 849 break;
842 850
843 /* struct gaim_connection *, char *, int */ 851 /* struct gaim_connection *, char *, int */
844 case event_warned: 852 case event_warned: