summaryrefslogtreecommitdiff
path: root/libpurple/account.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-01-14 20:34:32 -0600
committerGary Kramlich <grim@reaperworld.com>2021-01-14 20:34:32 -0600
commit0aa689578aa6cf7253996fde3cc80e481a23b7e6 (patch)
tree2d6bdca9c162523a4479030e7587b2b893941d64 /libpurple/account.h
parentbd88d82e84772baea9d0fa1aa7d06b64a5696974 (diff)
downloadpidgin-0aa689578aa6cf7253996fde3cc80e481a23b7e6.tar.gz
A handful of random doc fixes
Some of these are direct copies from the FarStream docs. Testing Done: Compiled, ran, and viewed the docs locally. Reviewed at https://reviews.imfreedom.org/r/425/
Diffstat (limited to 'libpurple/account.h')
-rw-r--r--libpurple/account.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libpurple/account.h b/libpurple/account.h
index cb071668f7..dff6df1788 100644
--- a/libpurple/account.h
+++ b/libpurple/account.h
@@ -31,6 +31,10 @@
* @section_id: libpurple-account
* @short_description: <filename>account.h</filename>
* @title: Account Object
+ *
+ * A #PurpleAccount is the core configuration for connecting to a specific
+ * account. User interfaces typically allow users to create these in a dialog
+ * or wizard.
*/
#include <glib.h>
@@ -75,6 +79,11 @@ typedef enum
/**
* PurpleAccountRequestResponse:
+ * @PURPLE_ACCOUNT_RESPONSE_IGNORE: Silently ignore the request.
+ * @PURPLE_ACCOUNT_RESPONSE_DENY: Block the request potentially informing the
+ * sender based on the protocol.
+ * @PURPLE_ACCOUNT_RESPONSE_PASS: Prompt the user with the request.
+ * @PURPLE_ACCOUNT_RESPONSE_ACCEPT: Grant the request.
*
* Account request response types
*/
@@ -88,6 +97,12 @@ typedef enum
/**
* PurpleAccountPrivacyType:
+ * @PURPLE_ACCOUNT_PRIVACY_ALLOW_ALL: Allow everything.
+ * @PURPLE_ACCOUNT_PRIVACY_DENY_ALL: Deny everything.
+ * @PURPLE_ACCOUNT_PRIVACY_ALLOW_USERS: Allow specific users.
+ * @PURPLE_ACCOUNT_PRIVACY_DENY_USERS: Deny specific users.
+ * @PURPLE_ACCOUNT_PRIVACY_ALLOW_BUDDYLIST: Allow users found in the buddy
+ * list.
*
* Privacy data types.
*/