| 762 */ |
762 */ |
| 763 void purple_plugins_add_search_path(const gchar *path); |
763 void purple_plugins_add_search_path(const gchar *path); |
| 764 |
764 |
| 765 /** |
765 /** |
| 766 * Forces a refresh of all plugins found in the search paths, and loads plugins |
766 * Forces a refresh of all plugins found in the search paths, and loads plugins |
| 767 * that are to be loaded on query. |
767 * that are to be auto-loaded. |
| 768 * |
768 * |
| 769 * @see purple_plugins_add_search_path() |
769 * @see purple_plugins_add_search_path() |
| 770 */ |
770 */ |
| 771 void purple_plugins_refresh(void); |
771 void purple_plugins_refresh(void); |
| 772 |
772 |
| 788 */ |
788 */ |
| 789 PurplePlugin *purple_plugins_find_by_filename(const char *filename); |
789 PurplePlugin *purple_plugins_find_by_filename(const char *filename); |
| 790 |
790 |
| 791 /** |
791 /** |
| 792 * Saves the list of loaded plugins to the specified preference key. |
792 * Saves the list of loaded plugins to the specified preference key. |
| 793 * Plugins that are set to load on query are not saved. |
793 * Plugins that are set to auto-load are not saved. |
| 794 * |
794 * |
| 795 * @param key The preference key to save the list of plugins to. |
795 * @param key The preference key to save the list of plugins to. |
| 796 */ |
796 */ |
| 797 void purple_plugins_save_loaded(const char *key); |
797 void purple_plugins_save_loaded(const char *key); |
| 798 |
798 |