diff src/account.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 a4f2aba0848d
children 49ae70ffcea5
line wrap: on
line diff
--- a/src/account.h	Mon Jun 23 02:00:15 2003 +0000
+++ b/src/account.h	Mon Jun 23 06:40:13 2003 +0000
@@ -63,6 +63,15 @@
 	int perm_deny;              /**< The permit/deny setting.    */
 };
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**************************************************************************/
+/** @name Account API                                                     */
+/**************************************************************************/
+/*@{*/
+
 /**
  * Creates a new account.
  *
@@ -462,6 +471,13 @@
 gboolean gaim_account_get_ui_bool(const GaimAccount *account, const char *ui,
 								  const char *name, gboolean default_value);
 
+/*@}*/
+
+/**************************************************************************/
+/** @name Accounts API                                                    */
+/**************************************************************************/
+/*@{*/
+
 /**
  * Loads the accounts.
  */
@@ -529,4 +545,10 @@
 GaimAccount *gaim_accounts_find_with_prpl_id(const char *name,
 											 const char *protocol_id);
 
+/*@}*/
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _GAIM_ACCOUNTS_H_ */