diff src/pounce.h @ 5944:158196b2db19

[gaim-migrate @ 6385] Added #ifdef __cplusplus lines so that things will link right with C++. Also added some doxygen comment blocks that didn't previously exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 06:40:13 +0000
parents 448f2f4ca3ec
children 41120df7ed94
line wrap: on
line diff
--- a/src/pounce.h	Mon Jun 23 02:00:15 2003 +0000
+++ b/src/pounce.h	Mon Jun 23 06:40:13 2003 +0000
@@ -72,6 +72,15 @@
 	void *data;                   /**< Pounce-specific data.      */
 };
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**************************************************************************/
+/** @name Buddy Pounce API                                                */
+/**************************************************************************/
+/*@{*/
+
 /**
  * Creates a new buddy pounce.
  *
@@ -243,6 +252,13 @@
 void gaim_pounce_execute(const GaimAccount *pouncer, const char *pouncee,
 						 GaimPounceEvent events);
 
+/*@}*/
+
+/**************************************************************************/
+/** @name Buddy Pounces API                                               */
+/**************************************************************************/
+/*@{*/
+
 /**
  * Finds a pounce with the specified event(s) and buddy.
  *
@@ -263,6 +279,8 @@
 
 /**
  * Loads the pounces.
+ *
+ * @return @c TRUE if the pounces could be loaded.
  */
 gboolean gaim_pounces_load(void);
 
@@ -297,4 +315,10 @@
  */
 GList *gaim_pounces_get_all(void);
 
+/*@}*/
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _GAIM_POUNCE_H_ */