comparison libpurple/plugins/perl/common/PluginPref.xs @ 21555:ca1d23ae3a21

Add purple_plugin_pref_[sg]et_format_type to the Perl API. There are a number of new functions that also need to be added, but I don't have time to do that right now. Fixes #3781.
author Daniel Atallah <daniel.atallah@gmail.com>
date Fri, 16 Nov 2007 17:11:44 +0000
parents 39c7bb133a9f
children 6f47135f5378
comparison
equal deleted inserted replaced
21554:7a1099df3678 21555:ca1d23ae3a21
91 91
92 gboolean 92 gboolean
93 purple_plugin_pref_get_masked(pref) 93 purple_plugin_pref_get_masked(pref)
94 Purple::PluginPref pref 94 Purple::PluginPref pref
95 95
96 Purple::String::Format::Type
97 purple_plugin_pref_get_format_type(pref)
98 Purple::PluginPref pref
99
96 unsigned int 100 unsigned int
97 purple_plugin_pref_get_max_length(pref) 101 purple_plugin_pref_get_max_length(pref)
98 Purple::PluginPref pref 102 Purple::PluginPref pref
99 103
100 const char * 104 const char *
143 purple_plugin_pref_set_masked(pref, mask) 147 purple_plugin_pref_set_masked(pref, mask)
144 Purple::PluginPref pref 148 Purple::PluginPref pref
145 gboolean mask 149 gboolean mask
146 150
147 void 151 void
152 purple_plugin_pref_set_format_type(pref, format)
153 Purple::PluginPref pref
154 Purple::String::Format::Type format
155
156 void
148 purple_plugin_pref_set_max_length(pref, max_length) 157 purple_plugin_pref_set_max_length(pref, max_length)
149 Purple::PluginPref pref 158 Purple::PluginPref pref
150 unsigned int max_length 159 unsigned int max_length
151 160
152 void 161 void