diff src/signals.c @ 9734:676cf082d29c

[gaim-migrate @ 10595] From Kevin Stange: This patch adds the conversation-updated signal which gets fired whenever something happens to update the data associated with a conversation, like a topic change or adding the person/chat to your buddy list. The signal passes back the enum value for the update type in addition to the conversation, which seems like the right thing to do. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 10 Aug 2004 00:41:33 +0000
parents 8b2451878e26
children 60db14d54914
line wrap: on
line diff
--- a/src/signals.c	Tue Aug 10 00:29:14 2004 +0000
+++ b/src/signals.c	Tue Aug 10 00:41:33 2004 +0000
@@ -589,6 +589,16 @@
 }
 
 void
+gaim_marshal_VOID__POINTER_UINT(GaimCallback cb, va_list args,
+										void *data, void **return_val)
+{
+	void *arg1 = va_arg(args, void *);
+	guint arg2 = va_arg(args, guint);
+
+	((void (*)(void *, guint, void *))cb)(arg1, arg2, data);
+}
+
+void
 gaim_marshal_VOID__POINTER_POINTER(GaimCallback cb, va_list args,
 								   void *data, void **return_val)
 {