comparison src/prpl.h @ 5638:0bdfa28c678e

[gaim-migrate @ 6047] We're slowly killing off multi.h. The proto_user_split and proto_user_opt have been replaced with GaimAccountOption and GaimAccountUserSplit structures, which of course have an API. The account dialog is being rewritten as well, and will soon allow you to add and modify accounts again. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 01 Jun 2003 17:40:20 +0000
parents 5e7de337a053
children f67742956a28
comparison
equal deleted inserted replaced
5637:69c92ae58876 5638:0bdfa28c678e
180 struct _GaimPluginProtocolInfo 180 struct _GaimPluginProtocolInfo
181 { 181 {
182 GaimProtocol protocol; /**< The protocol type. */ 182 GaimProtocol protocol; /**< The protocol type. */
183 GaimProtocolOptions options; /**< Protocol options. */ 183 GaimProtocolOptions options; /**< Protocol options. */
184 184
185 /* user_splits is a GList of g_malloc'd struct proto_user_split */ 185 GList *user_splits; /* A GList of GaimAccountUserSplit */
186 GList *user_splits; 186 GList *protocol_options; /* A GList of GaimAccountOption */
187 /* user_opts is a GList* of g_malloc'd struct proto_user_opts */
188 GList *user_opts;
189 187
190 /** 188 /**
191 * Returns the base icon name for the given buddy and account. 189 * Returns the base icon name for the given buddy and account.
192 * If buddy is NULL, it will return the name to use for the account's icon 190 * If buddy is NULL, it will return the name to use for the account's icon
193 */ 191 */