comparison src/account.h @ 7063:7fdac700deb1

[gaim-migrate @ 7627] show_change_pass, or whatever it was called, is now core/UI split. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 30 Sep 2003 07:47:38 +0000
parents dece74f05509
children 493fe366c01f
comparison
equal deleted inserted replaced
7062:86ed8b2aa665 7063:7fdac700deb1
43 struct _GaimAccountUiOps 43 struct _GaimAccountUiOps
44 { 44 {
45 void (*notify_added)(GaimAccount *account, const char *remote_user, 45 void (*notify_added)(GaimAccount *account, const char *remote_user,
46 const char *id, const char *alias, 46 const char *id, const char *alias,
47 const char *message); 47 const char *message);
48 void (*request_change_pass)(GaimAccount *account);
48 }; 49 };
49 50
50 struct _GaimAccount 51 struct _GaimAccount
51 { 52 {
52 char *username; /**< The username. */ 53 char *username; /**< The username. */
142 void gaim_account_notify_added(GaimAccount *account, const char *remote_user, 143 void gaim_account_notify_added(GaimAccount *account, const char *remote_user,
143 const char *id, const char *alias, 144 const char *id, const char *alias,
144 const char *message); 145 const char *message);
145 146
146 /** 147 /**
148 * Requests information from the user to change the account's password.
149 *
150 * @param account The account to change the password on.
151 */
152 void gaim_account_request_change_password(GaimAccount *account);
153
154 /**
147 * Sets the account's username. 155 * Sets the account's username.
148 * 156 *
149 * @param account The account. 157 * @param account The account.
150 * @param username The username. 158 * @param username The username.
151 */ 159 */