comparison src/accountopt.h @ 6902:e30bedfb99db

[gaim-migrate @ 7449] Ugly Big Red Line removal. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 21 Sep 2003 18:42:06 +0000
parents 158196b2db19
children fa6395637e2c
comparison
equal deleted inserted replaced
6901:5ace3b44cf61 6902:e30bedfb99db
3 * @ingroup core 3 * @ingroup core
4 * 4 *
5 * gaim 5 * gaim
6 * 6 *
7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> 7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version. 12 * (at your option) any later version.
13 * 13 *
25 25
26 #include "prefs.h" 26 #include "prefs.h"
27 27
28 /** 28 /**
29 * An option for an account. 29 * An option for an account.
30 * 30 *
31 * This is set by protocol plugins, and appears in the account settings 31 * This is set by protocol plugins, and appears in the account settings
32 * dialogs. 32 * dialogs.
33 */ 33 */
34 typedef struct 34 typedef struct
35 { 35 {
185 185
186 /** 186 /**
187 * Returns the default boolean value for an account option. 187 * Returns the default boolean value for an account option.
188 * 188 *
189 * @param option The account option. 189 * @param option The account option.
190 * 190 *
191 * @return The default boolean value. 191 * @return The default boolean value.
192 */ 192 */
193 gboolean gaim_account_option_get_default_bool(const GaimAccountOption *option); 193 gboolean gaim_account_option_get_default_bool(const GaimAccountOption *option);
194 194
195 /** 195 /**
196 * Returns the default integer value for an account option. 196 * Returns the default integer value for an account option.
197 * 197 *
198 * @param option The account option. 198 * @param option The account option.
199 * 199 *
200 * @return The default integer value. 200 * @return The default integer value.
201 */ 201 */
202 int gaim_account_option_get_default_int(const GaimAccountOption *option); 202 int gaim_account_option_get_default_int(const GaimAccountOption *option);
203 203
204 /** 204 /**
205 * Returns the default string value for an account option. 205 * Returns the default string value for an account option.
206 * 206 *
207 * @param option The account option. 207 * @param option The account option.
208 * 208 *
209 * @return The default string value. 209 * @return The default string value.
210 */ 210 */
211 const char *gaim_account_option_get_default_string( 211 const char *gaim_account_option_get_default_string(
212 const GaimAccountOption *option); 212 const GaimAccountOption *option);
213 213