| 198 plugin_query(GError **error) |
198 plugin_query(GError **error) |
| 199 { |
199 { |
| 200 const gchar * const authors[] = PLUGIN_AUTHORS; |
200 const gchar * const authors[] = PLUGIN_AUTHORS; |
| 201 |
201 |
| 202 return pidgin_plugin_info_new( |
202 return pidgin_plugin_info_new( |
| 203 "id", PLUGIN_ID, |
203 "id", PLUGIN_ID, |
| 204 "name", PLUGIN_NAME, |
204 "name", PLUGIN_NAME, |
| 205 "version", DISPLAY_VERSION, |
205 "version", DISPLAY_VERSION, |
| 206 "category", PLUGIN_CATEGORY, |
206 "category", PLUGIN_CATEGORY, |
| 207 "summary", PLUGIN_SUMMARY, |
207 "summary", PLUGIN_SUMMARY, |
| 208 "description", PLUGIN_DESCRIPTION, |
208 "description", PLUGIN_DESCRIPTION, |
| 209 "authors", authors, |
209 "authors", authors, |
| 210 "website", PURPLE_WEBSITE, |
210 "website", PURPLE_WEBSITE, |
| 211 "abi-version", PURPLE_ABI_VERSION, |
211 "abi-version", PURPLE_ABI_VERSION, |
| 212 "preferences-frame", get_plugin_pref_frame, |
212 "pref-frame-cb", get_plugin_pref_frame, |
| 213 NULL |
213 NULL |
| 214 ); |
214 ); |
| 215 } |
215 } |
| 216 |
216 |
| 217 static gboolean |
217 static gboolean |