diff src/pounce.c @ 5563:9eb5b13fd412

[gaim-migrate @ 5965] Just a taste of what's coming. Standard "This won't compile" thing. Plugin authors, you're going to hate me, but that's okay, because I have friends too! It's really late. My brain resembles that of fish swimming in jello pudding with neon lights flying around chanting musicals. I'm not on drugs. I'm just that tired. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 09:38:29 +0000
parents abc8489b2e8f
children 2fa4aa9c1885
line wrap: on
line diff
--- a/src/pounce.c	Fri May 30 04:13:58 2003 +0000
+++ b/src/pounce.c	Fri May 30 09:38:29 2003 +0000
@@ -26,7 +26,7 @@
 static GList *pounces = NULL;
 
 struct gaim_pounce *
-gaim_pounce_new(struct gaim_account *pouncer, const char *pouncee,
+gaim_pounce_new(GaimAccount *pouncer, const char *pouncee,
 				GaimPounceEvent event, gaim_pounce_cb cb,
 				void *data, void (*free)(void *))
 {
@@ -77,7 +77,7 @@
 
 void
 gaim_pounce_set_pouncer(struct gaim_pounce *pounce,
-						struct gaim_account *pouncer)
+						GaimAccount *pouncer)
 {
 	if (pounce == NULL || pouncer == NULL)
 		return;
@@ -115,7 +115,7 @@
 	return pounce->events;
 }
 
-struct gaim_account *
+GaimAccount *
 gaim_pounce_get_pouncer(const struct gaim_pounce *pounce)
 {
 	if (pounce == NULL)
@@ -143,7 +143,7 @@
 }
 
 void
-gaim_pounce_execute(const struct gaim_account *pouncer,
+gaim_pounce_execute(const GaimAccount *pouncer,
 					const char *pouncee, GaimPounceEvent events)
 {
 	struct gaim_pounce *pounce;
@@ -166,7 +166,7 @@
 }
 
 struct gaim_pounce *
-gaim_find_pounce(const struct gaim_account *pouncer,
+gaim_find_pounce(const GaimAccount *pouncer,
 				 const char *pouncee, GaimPounceEvent events)
 {
 	struct gaim_pounce *pounce;