2313
|
1 /* Audacious - Cross-platform multimedia player
|
|
2 * Copyright (C) 2005-2007 Audacious development team
|
|
3 *
|
|
4 * Based on BMP:
|
|
5 * Copyright (C) 2003-2004 BMP development team.
|
|
6 *
|
|
7 * Based on XMMS:
|
|
8 * Copyright (C) 1998-2003 XMMS development team.
|
|
9 *
|
|
10 * This program is free software; you can redistribute it and/or modify
|
|
11 * it under the terms of the GNU General Public License as published by
|
|
12 * the Free Software Foundation; under version 2 of the License.
|
|
13 *
|
|
14 * This program is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
22 */
|
|
23
|
|
24 #ifndef EFFECT_H
|
|
25 #define EFFECT_H
|
|
26
|
|
27 #include <glib.h>
|
|
28
|
|
29 typedef struct _EffectPluginData EffectPluginData;
|
|
30
|
|
31 struct _EffectPluginData {
|
|
32 GList *effect_list;
|
|
33 GList *enabled_list;
|
|
34 };
|
|
35
|
|
36 GList *get_effect_list(void);
|
|
37 void effect_about(gint i);
|
|
38 void effect_configure(gint i);
|
|
39 GList *get_effect_enabled_list(void);
|
|
40 void enable_effect_plugin(gint i, gboolean enable);
|
|
41 gboolean effect_enabled(gint i);
|
|
42 gchar *effect_stringify_enabled_list(void);
|
|
43 void effect_enable_from_stringified_list(const gchar * list);
|
|
44
|
|
45 extern EffectPluginData ep_data;
|
|
46
|
|
47 #endif
|