comparison src/account.h @ 5565:c3c4aaf69f65

[gaim-migrate @ 5967] More goodies. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 18:25:11 +0000
parents 187c740f2a4e
children 5e7de337a053
comparison
equal deleted inserted replaced
5564:187c740f2a4e 5565:c3c4aaf69f65
36 char *user_info; /**< User information. */ 36 char *user_info; /**< User information. */
37 37
38 char *buddy_icon; /**< The buddy icon. */ 38 char *buddy_icon; /**< The buddy icon. */
39 39
40 gboolean remember_pass; /**< Remember the password. */ 40 gboolean remember_pass; /**< Remember the password. */
41 gboolean check_mail; /**< Check for mail. */
41 42
42 GaimProtocol protocol; /**< The account protocol. */ 43 GaimProtocol protocol; /**< The account protocol. */
43 44
44 GaimConnection *gc; /**< The connection handle. */ 45 GaimConnection *gc; /**< The connection handle. */
45 46
148 * @param value @c TRUE if it should remember the password. 149 * @param value @c TRUE if it should remember the password.
149 */ 150 */
150 void gaim_account_set_remember_password(GaimAccount *account, gboolean value); 151 void gaim_account_set_remember_password(GaimAccount *account, gboolean value);
151 152
152 /** 153 /**
154 * Sets whether or not this account should check for mail.
155 *
156 * @param account The account.
157 * @param value @c TRUE if it should check for mail.
158 */
159 void gaim_account_set_check_mail(GaimAccount *account, gboolean value);
160
161 /**
153 * Sets a protocol-specific integer setting for an account. 162 * Sets a protocol-specific integer setting for an account.
154 * 163 *
155 * @param account The account. 164 * @param account The account.
156 * @param name The name of the setting. 165 * @param name The name of the setting.
157 * @param value The setting's value. 166 * @param value The setting's value.
257 * @param account The account. 266 * @param account The account.
258 * 267 *
259 * @return @c TRUE if it should remember the password. 268 * @return @c TRUE if it should remember the password.
260 */ 269 */
261 gboolean gaim_account_get_remember_password(const GaimAccount *account); 270 gboolean gaim_account_get_remember_password(const GaimAccount *account);
271
272 /**
273 * Returns whether or not this account should check for mail.
274 *
275 * @param account The account.
276 *
277 * @return @c TRUE if it should check for mail.
278 */
279 gboolean gaim_account_get_check_mail(const GaimAccount *account);
262 280
263 /** 281 /**
264 * Returns a protocol-specific integer setting for an account. 282 * Returns a protocol-specific integer setting for an account.
265 * 283 *
266 * @param account The account. 284 * @param account The account.