diff src/connection.h @ 6488:e5e8d21bd4d8

[gaim-migrate @ 7002] Some documentation updates. Really nothing great. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 18 Aug 2003 10:08:26 +0000
parents 70d5122bc3ff
children 0473a28ce807
line wrap: on
line diff
--- a/src/connection.h	Mon Aug 18 04:18:46 2003 +0000
+++ b/src/connection.h	Mon Aug 18 10:08:26 2003 +0000
@@ -19,6 +19,11 @@
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ * @signal signing-on (GaimConnection *gc)
+ * @signal signed-on (GaimConnection *gc)
+ * @signal signing-off (GaimConnection *gc)
+ * @signal signed-off (GaimConnection *gc)
  */
 #ifndef _GAIM_CONNECTION_H_
 #define _GAIM_CONNECTION_H_
@@ -94,6 +99,7 @@
 /**************************************************************************/
 /** @name Connection API                                                  */
 /**************************************************************************/
+/*@{*/
 
 /**
  * Creates a connection to the specified account.
@@ -122,7 +128,7 @@
 
 /**
  * Signs a connection off.
- *
+ 
  * @param gc The connection to sign off.
  *
  * @see gaim_connection_connect()
@@ -233,23 +239,6 @@
  */
 GList *gaim_connections_get_connecting(void);
 
-/**
- * Initializes the connections subsystem.
- */
-void gaim_connections_init(void);
-
-/**
- * Uninitializes the connections subsystem.
- */
-void gaim_connections_uninit(void);
-
-/**
- * Returns the handle to the connections subsystem.
- *
- * @return The connections subsystem handle.
- */
-void *gaim_connections_get_handle(void);
-
 /*@}*/
 
 /**************************************************************************/
@@ -273,6 +262,31 @@
 
 /*@}*/
 
+/**************************************************************************/
+/** @name Connections Subsystem                                           */
+/**************************************************************************/
+/*@{*/
+
+/**
+ * Initializes the connections subsystem.
+ */
+void gaim_connections_init(void);
+
+/**
+ * Uninitializes the connections subsystem.
+ */
+void gaim_connections_uninit(void);
+
+/**
+ * Returns the handle to the connections subsystem.
+ *
+ * @return The connections subsystem handle.
+ */
+void *gaim_connections_get_handle(void);
+
+/*@}*/
+
+
 #ifdef __cplusplus
 }
 #endif