diff plugins/notify.c @ 1000:91b7377e7b45

[gaim-migrate @ 1010] Plugins work again, I think. There may still be some bugginess. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 16 Oct 2000 20:11:18 +0000
parents 18e147714c4b
children ece2d1543b20
line wrap: on
line diff
--- a/plugins/notify.c	Sun Oct 15 03:55:23 2000 +0000
+++ b/plugins/notify.c	Mon Oct 16 20:11:18 2000 +0000
@@ -6,7 +6,7 @@
 
 void *handle;
 
-void received_im(char **who, char **what, void *m) {
+void received_im(struct gaim_connection *gc, char **who, char **what, void *m) {
 	char buf[256];
 	struct conversation *cnv = find_conversation(*who);
 	GtkWindow *win;
@@ -23,7 +23,7 @@
 	}
 }
 
-void sent_im(char *who, char **what, void *m) {
+void sent_im(struct gaim_connection *gc, char *who, char **what, void *m) {
 	char buf[256];
 	struct conversation *c = find_conversation(who);
 	GtkWindow *win = (GtkWindow *)c->window;