diff src/core.h @ 3517:6b0cb60162f4

[gaim-migrate @ 3590] Rob McQueen added a mute feature to his nice little docklet. I added a queuing feature. Configure the docklet in the plugins dialog to queue unread messages, and when you receive a message the docklet will eat it up and show a little message pending icon. Click on it, and read your message. ICQ people will like it. I also made plugin_event use a va_list. I bet this breaks perl. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 16 Sep 2002 08:35:24 +0000
parents e23909729192
children cd938f18f3f8
line wrap: on
line diff
--- a/src/core.h	Mon Sep 16 07:04:55 2002 +0000
+++ b/src/core.h	Mon Sep 16 08:35:24 2002 +0000
@@ -26,6 +26,7 @@
 #include <config.h>
 #endif
 
+#include <sys/types.h>
 #ifdef HAVE_ICONV
 #include <iconv.h>
 #endif
@@ -189,7 +190,7 @@
 #ifdef USE_PERL
 extern void perl_autoload();
 extern void perl_end();
-extern int perl_event(enum gaim_event, void *, void *, void *, void *);
+extern int perl_event(enum gaim_event, void *, void *, void *, void *, void *);
 extern int perl_load_file(char *);
 extern void unload_perl_scripts();
 extern void list_perl_scripts();
@@ -205,7 +206,7 @@
 extern void gaim_plugin_unload(GModule *);
 extern void remove_all_plugins();
 #endif
-extern int plugin_event(enum gaim_event, void *, void *, void *, void *);
+extern int plugin_event(enum gaim_event, ...);
 extern char *event_name(enum gaim_event);
 
 /* Functions in server.c */