qulogic/pidgin

Parents 9acad6165ba9
Children 153015687b87
Make sure all of the accounts API is marked with the proper version

I compared these against a checkout of the v2.0.0 tag and using the girlint
stylesheet to verify.

Testing Done:
Asked the turtles for help.

Bugs closed: PIDGIN-17838

Reviewed at https://reviews.imfreedom.org/r/2726/
--- a/libpurple/accounts.h Thu Oct 26 05:50:57 2023 -0500
+++ b/libpurple/accounts.h Thu Oct 26 05:51:58 2023 -0500
@@ -45,7 +45,10 @@
* This will remove any buddies from the buddy list that belong to this
* account, buddy pounces that belong to this account, and will also
* destroy @account.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_accounts_delete(PurpleAccount *account);
/**
@@ -58,7 +61,10 @@
*
* You probably shouldn't call this unless you really know
* what you're doing.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_accounts_restore_current_statuses(void);
/**************************************************************************/
@@ -71,21 +77,30 @@
* Returns the accounts subsystem handle.
*
* Returns: The accounts subsystem handle.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void *purple_accounts_get_handle(void);
/**
* purple_accounts_init:
*
* Initializes the accounts subsystem.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_accounts_init(void);
/**
* purple_accounts_uninit:
*
* Uninitializes the accounts subsystem.
+ *
+ * Since: 2.0.0
*/
+PURPLE_AVAILABLE_IN_ALL
void purple_accounts_uninit(void);
/**