comparison src/account.h @ 6720:41120df7ed94

[gaim-migrate @ 7247] Fixed documentation errors so Doxygen no longer complains. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 03 Sep 2003 05:21:04 +0000
parents 42fdf16f1dad
children dece74f05509
comparison
equal deleted inserted replaced
6719:3cc4d5e55a69 6720:41120df7ed94
143 void gaim_account_set_alias(GaimAccount *account, const char *alias); 143 void gaim_account_set_alias(GaimAccount *account, const char *alias);
144 144
145 /** 145 /**
146 * Sets the account's user information 146 * Sets the account's user information
147 * 147 *
148 * @param account The account. 148 * @param account The account.
149 * @param info The user information. 149 * @param user_info The user information.
150 */ 150 */
151 void gaim_account_set_user_info(GaimAccount *account, const char *user_info); 151 void gaim_account_set_user_info(GaimAccount *account, const char *user_info);
152 152
153 /** 153 /**
154 * Sets the account's buddy icon. 154 * Sets the account's buddy icon.
249 * @param account The account. 249 * @param account The account.
250 * @param name The name of the setting. 250 * @param name The name of the setting.
251 * @param value The setting's value. 251 * @param value The setting's value.
252 */ 252 */
253 void gaim_account_set_string(GaimAccount *account, const char *name, 253 void gaim_account_set_string(GaimAccount *account, const char *name,
254 const char *string); 254 const char *value);
255 255
256 /** 256 /**
257 * Sets a protocol-specific boolean setting for an account. 257 * Sets a protocol-specific boolean setting for an account.
258 * 258 *
259 * @param account The account. 259 * @param account The account.
281 * @param ui The UI name. 281 * @param ui The UI name.
282 * @param name The name of the setting. 282 * @param name The name of the setting.
283 * @param value The setting's value. 283 * @param value The setting's value.
284 */ 284 */
285 void gaim_account_set_ui_string(GaimAccount *account, const char *ui, 285 void gaim_account_set_ui_string(GaimAccount *account, const char *ui,
286 const char *name, const char *string); 286 const char *name, const char *value);
287 287
288 /** 288 /**
289 * Sets a UI-specific boolean setting for an account. 289 * Sets a UI-specific boolean setting for an account.
290 * 290 *
291 * @param account The account. 291 * @param account The account.