comparison src/pluginpref.h @ 9841:1ae82c0c24ee

[gaim-migrate @ 10718] "adds a masked string type to plugin prefs" from Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 23 Aug 2004 22:06:19 +0000
parents db62420a53a2
children acbbc0d73600
comparison
equal deleted inserted replaced
9840:e8caffe42e38 9841:1ae82c0c24ee
213 * @param pref The plugin pref 213 * @param pref The plugin pref
214 * @return the max length 214 * @return the max length
215 */ 215 */
216 unsigned int gaim_plugin_pref_get_max_length(GaimPluginPref *pref); 216 unsigned int gaim_plugin_pref_get_max_length(GaimPluginPref *pref);
217 217
218 /**
219 * Sets the masking of a string plugin pref
220 *
221 * @param pref The plugin pref
222 * @param masked The value to set
223 */
224 void gaim_plugin_pref_set_masked(GaimPluginPref *pref, gboolean mask);
225
226 /**
227 * Gets the masking of a string plugin pref
228 *
229 * @param pref The plugin pref
230 * @return The masking
231 */
232 gboolean gaim_plugin_pref_get_masked(GaimPluginPref *pref);
233
218 /*@}*/ 234 /*@}*/
219 235
220 #ifdef __cplusplus 236 #ifdef __cplusplus
221 } 237 }
222 #endif 238 #endif