Audacious $Id:Doxyfile42802007-03-2104:39:00Znenolod$
|
00001 /* 00002 * plugins-api.h 00003 * Copyright 2010 John Lindgren 00004 * 00005 * This file is part of Audacious. 00006 * 00007 * Audacious is free software: you can redistribute it and/or modify it under 00008 * the terms of the GNU General Public License as published by the Free Software 00009 * Foundation, version 2 or version 3 of the License. 00010 * 00011 * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY 00012 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00013 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License along with 00016 * Audacious. If not, see <http://www.gnu.org/licenses/>. 00017 * 00018 * The Audacious team does not consider modular code linking to Audacious or 00019 * using our public API to be a derived work. 00020 */ 00021 00022 /* Do not include this file directly; use misc.h instead. */ 00023 00024 /* CAUTION: These functions are not thread safe. */ 00025 00026 /* effect.c */ 00027 AUD_FUNC2 (void, effect_plugin_enable, PluginHandle *, plugin, gboolean, enable) 00028 00029 /* general.c */ 00030 AUD_FUNC2 (void, general_plugin_enable, PluginHandle *, plugin, gboolean, enable) 00031 00032 /* main.c */ 00033 AUD_FUNC0 (PluginHandle *, iface_plugin_get_active) 00034 AUD_FUNC1 (void, iface_plugin_set_active, PluginHandle *, plugin) 00035 00036 /* plugin-registry.c */ 00037 AUD_FUNC4 (void, plugin_get_path, PluginHandle *, plugin, const gchar * *, path, 00038 gint *, type, gint *, number) 00039 AUD_FUNC3 (PluginHandle *, plugin_by_path, const gchar *, path, gint, type, 00040 gint, number) 00041 AUD_FUNC1 (void *, plugin_get_header, PluginHandle *, plugin) 00042 AUD_FUNC1 (PluginHandle *, plugin_by_header, void *, header) 00043 AUD_FUNC2 (gint, plugin_compare, PluginHandle *, a, PluginHandle *, b) 00044 AUD_FUNC3 (void, plugin_for_each, gint, type, PluginForEachFunc, func, void *, 00045 data) 00046 AUD_FUNC1 (const gchar *, plugin_get_name, PluginHandle *, plugin) 00047 AUD_FUNC1 (gboolean, plugin_has_about, PluginHandle *, plugin) 00048 AUD_FUNC1 (gboolean, plugin_has_configure, PluginHandle *, plugin) 00049 AUD_FUNC1 (gboolean, plugin_get_enabled, PluginHandle *, plugin) 00050 AUD_FUNC2 (void, plugin_set_enabled, PluginHandle *, plugin, gboolean, enabled) 00051 AUD_FUNC3 (void, plugin_for_enabled, gint, type, PluginForEachFunc, func, 00052 void *, data) 00053 00054 /* visualization.c */ 00055 AUD_FUNC2 (void, vis_plugin_enable, PluginHandle *, plugin, gboolean, enable)