comparison src/account.h @ 10812:d087e928ffd1

[gaim-migrate @ 12465] " A variety of spacing normalization I've done as I've navigated the source making other changes. The specific changes should be uncontroversial. I'm submitting these to shrink the deltas between my local tree and the CVS source. If spacing changes are unwelcome as a general rule, let me know." --rlaager I said not to do this sort of patch often. also a spelling fix. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 11 Apr 2005 04:32:26 +0000
parents c80a609bd747
children 1c5398ccbeb0
comparison
equal deleted inserted replaced
10811:dc59482c8d37 10812:d087e928ffd1
48 void (*status_changed)(GaimAccount *account, GaimStatus *status); 48 void (*status_changed)(GaimAccount *account, GaimStatus *status);
49 }; 49 };
50 50
51 struct _GaimAccount 51 struct _GaimAccount
52 { 52 {
53 char *username; /**< The username. */ 53 char *username; /**< The username. */
54 char *alias; /**< The current alias. */ 54 char *alias; /**< The current alias. */
55 char *password; /**< The account password. */ 55 char *password; /**< The account password. */
56 char *user_info; /**< User information. */ 56 char *user_info; /**< User information. */
57 57
58 char *buddy_icon; /**< The buddy icon. */ 58 char *buddy_icon; /**< The buddy icon. */
59 59
60 gboolean remember_pass; /**< Remember the password. */ 60 gboolean remember_pass; /**< Remember the password. */
61 61
62 char *protocol_id; /**< The ID of the protocol. */ 62 char *protocol_id; /**< The ID of the protocol. */
63 63
64 GaimConnection *gc; /**< The connection handle. */ 64 GaimConnection *gc; /**< The connection handle. */
65 gboolean disconnecting; /**< The account is currently disconnecting */ 65 gboolean disconnecting; /**< The account is currently disconnecting */
66 66
67 GHashTable *settings; /**< Protocol-specific settings. */ 67 GHashTable *settings; /**< Protocol-specific settings. */
68 GHashTable *ui_settings; /**< UI-specific settings. */ 68 GHashTable *ui_settings; /**< UI-specific settings. */
69 69
70 GaimProxyInfo *proxy_info; /**< Proxy information. This will be set */ 70 GaimProxyInfo *proxy_info; /**< Proxy information. This will be set */
71 /* to NULL when the account inherits */ 71 /* to NULL when the account inherits */
72 /* proxy settings from global prefs. */ 72 /* proxy settings from global prefs. */
73 73
74 GSList *permit; /**< Permit list. */ 74 GSList *permit; /**< Permit list. */
75 GSList *deny; /**< Deny list. */ 75 GSList *deny; /**< Deny list. */
76 int perm_deny; /**< The permit/deny setting. */ 76 int perm_deny; /**< The permit/deny setting. */
77 77
78 GList *status_types; /**< Status types. */ 78 GList *status_types; /**< Status types. */
79 79
80 GaimPresence *presence; /**< Presence. */ 80 GaimPresence *presence; /**< Presence. */
81 GaimLog *system_log; /**< The system log */ 81 GaimLog *system_log; /**< The system log */
82 82
83 void *ui_data; /**< The UI can put data here. */ 83 void *ui_data; /**< The UI can put data here. */
84 }; 84 };
85 85
86 #ifdef __cplusplus 86 #ifdef __cplusplus
87 extern "C" { 87 extern "C" {
88 #endif 88 #endif