diff src/pounce.h @ 6837:f098765ac919

[gaim-migrate @ 7382] The pounces subsystem now registers signal callbacks for all the pounce types. The calls to pounce code in server.c, and therefore in all the rest of gaim, have been removed. The pounce code is now more like its own separate island. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 14 Sep 2003 21:05:11 +0000
parents 41120df7ed94
children fa6395637e2c
line wrap: on
line diff
--- a/src/pounce.h	Sun Sep 14 19:54:15 2003 +0000
+++ b/src/pounce.h	Sun Sep 14 21:05:11 2003 +0000
@@ -5,7 +5,7 @@
  * gaim
  *
  * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
@@ -255,7 +255,7 @@
 /*@}*/
 
 /**************************************************************************/
-/** @name Buddy Pounces API                                               */
+/** @name Buddy Pounce Subsystem API                                      */
 /**************************************************************************/
 /*@{*/
 
@@ -273,11 +273,6 @@
 
 
 /**
- * Initializes the pounces subsystem.
- */
-void gaim_pounces_init(void);
-
-/**
  * Loads the pounces.
  *
  * @return @c TRUE if the pounces could be loaded.
@@ -315,6 +310,23 @@
  */
 GList *gaim_pounces_get_all(void);
 
+/**
+ * Returns the buddy pounce subsystem handle.
+ *
+ * @return The subsystem handle.
+ */
+void *gaim_pounces_get_handle(void);
+
+/**
+ * Initializes the pounces subsystem.
+ */
+void gaim_pounces_init(void);
+
+/**
+ * Uninitializes the pounces subsystem.
+ */
+void gaim_pounces_uninit(void);
+
 /*@}*/
 
 #ifdef __cplusplus