comparison libpurple/account.h @ 31820:28e27a37e4b4

Patch from Stefan Ott to add the account-authorization-requested-with-message signal, which can be useful to plugins. Fixes #8690. I also slipped in some ChangeLog.API tweaks.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 09 Jan 2011 04:40:07 +0000
parents 2a436e0ce977
children d72d728226dc
comparison
equal deleted inserted replaced
31819:5767e981508a 31820:28e27a37e4b4
57 typedef enum 57 typedef enum
58 { 58 {
59 PURPLE_ACCOUNT_REQUEST_AUTHORIZATION = 0 /* Account authorization request */ 59 PURPLE_ACCOUNT_REQUEST_AUTHORIZATION = 0 /* Account authorization request */
60 } PurpleAccountRequestType; 60 } PurpleAccountRequestType;
61 61
62 /**
63 * Account request response types
64 */
65 typedef enum
66 {
67 PURPLE_ACCOUNT_RESPONSE_IGNORE = -2,
68 PURPLE_ACCOUNT_RESPONSE_DENY = -1,
69 PURPLE_ACCOUNT_RESPONSE_PASS = 0,
70 PURPLE_ACCOUNT_RESPONSE_ACCEPT = 1
71 } PurpleAccountRequestResponse;
62 72
63 /** Account UI operations, used to notify the user of status changes and when 73 /** Account UI operations, used to notify the user of status changes and when
64 * buddies add this account to their buddy lists. 74 * buddies add this account to their buddy lists.
65 */ 75 */
66 struct _PurpleAccountUiOps 76 struct _PurpleAccountUiOps