comparison src/plugin.h @ 5949:90d0849abd3c

[gaim-migrate @ 6393] Saved plugins are now stored in UI-specific keys, which are passed to gaim_plugins_load_saved(). If you're using CVS (shame on you!) you'll need to reload your plugins, and if you're careful enough, remove the old plugins tree from prefs.xml (/core/plugins/loaded/...). I assume no responsibility if you destroy prefs.xml, delete your harddrive, or sell your soul to a goat. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 24 Jun 2003 03:50:31 +0000
parents 158196b2db19
children 70d5122bc3ff
comparison
equal deleted inserted replaced
5948:1bebb8345bde 5949:90d0849abd3c
251 * Destroys all registered plugins. 251 * Destroys all registered plugins.
252 */ 252 */
253 void gaim_plugins_destroy_all(void); 253 void gaim_plugins_destroy_all(void);
254 254
255 /** 255 /**
256 * Attempts to load all the plugins that were loaded when gaim last quit 256 * Attempts to load all the plugins in the specified preference key
257 */ 257 * that were loaded when gaim last quit.
258 void gaim_plugins_load_saved(void); 258 *
259 * @param key The preference key containing the list of plugins.
260 */
261 void gaim_plugins_load_saved(const char *key);
259 262
260 /** 263 /**
261 * Probes for plugins in the registered module paths. 264 * Probes for plugins in the registered module paths.
262 * 265 *
263 * @param ext The extension type to probe for, or @c NULL for all. 266 * @param ext The extension type to probe for, or @c NULL for all.