diff src/pounce.h @ 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 4691c5936c01
children 2fa4aa9c1885
line wrap: on
line diff
--- a/src/pounce.h	Fri May 30 04:13:58 2003 +0000
+++ b/src/pounce.h	Fri May 30 09:38:29 2003 +0000
@@ -56,7 +56,7 @@
 struct gaim_pounce
 {
 	GaimPounceEvent events;       /**< The event(s) to pounce on. */
-	struct gaim_account *pouncer; /**< The user who is pouncing.  */
+	GaimAccount *pouncer; /**< The user who is pouncing.  */
 
 	char *pouncee;                /**< The buddy to pounce on.    */
 
@@ -78,7 +78,7 @@
  *
  * @return The new buddy pounce structure.
  */
-struct gaim_pounce *gaim_pounce_new(struct gaim_account *pouncer,
+struct gaim_pounce *gaim_pounce_new(GaimAccount *pouncer,
 									const char *pouncee,
 									GaimPounceEvent event,
 									gaim_pounce_cb cb, void *data,
@@ -107,7 +107,7 @@
  * @param pouncer The account that will pounce.
  */
 void gaim_pounce_set_pouncer(struct gaim_pounce *pounce,
-							 struct gaim_account *pouncer);
+							 GaimAccount *pouncer);
 
 /**
  * Sets the buddy a pounce should pounce on.
@@ -149,7 +149,7 @@
  *
  * @return The account that will pounce.
  */
-struct gaim_account *gaim_pounce_get_pouncer(const struct gaim_pounce *pounce);
+GaimAccount *gaim_pounce_get_pouncer(const struct gaim_pounce *pounce);
 
 /**
  * Returns the buddy a pounce should pounce on.
@@ -176,7 +176,7 @@
  * @param pouncee The buddy that is being pounced.
  * @param events  The events that triggered the pounce.
  */
-void gaim_pounce_execute(const struct gaim_account *pouncer,
+void gaim_pounce_execute(const GaimAccount *pouncer,
 						 const char *pouncee,
 						 GaimPounceEvent events);
 
@@ -189,7 +189,7 @@
  *
  * @return The pounce if found, or @c NULL otherwise.
  */
-struct gaim_pounce *gaim_find_pounce(const struct gaim_account *pouncer,
+struct gaim_pounce *gaim_find_pounce(const GaimAccount *pouncer,
 									 const char *pouncee,
 									 GaimPounceEvent events);