Mercurial > audlegacy
annotate src/audacious/actions-equalizer.h @ 4712:6584bba8de63
I don't think those files belong to legacy ui...
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Tue, 08 Jul 2008 16:36:50 +0200 |
parents | 2eee464379dc |
children |
rev | line source |
---|---|
2313 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team. | |
3 * | |
4 * This program is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2313
diff
changeset
|
6 * the Free Software Foundation; under version 3 of the License. |
2313 | 7 * |
8 * This program is distributed in the hope that it will be useful, | |
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 * GNU General Public License for more details. | |
12 * | |
13 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2313
diff
changeset
|
14 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
15 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
16 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
17 * Audacious or using our public API to be a derived work. |
2313 | 18 */ |
19 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3123
diff
changeset
|
20 #ifndef AUDACIOUS_ACTIONS_EQUALIZER_H |
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3123
diff
changeset
|
21 #define AUDACIOUS_ACTIONS_EQUALIZER_H |
2313 | 22 |
23 void action_equ_load_preset(void); | |
24 void action_equ_load_auto_preset(void); | |
25 void action_equ_load_default_preset(void); | |
26 void action_equ_zero_preset(void); | |
27 void action_equ_load_preset_file(void); | |
28 void action_equ_load_preset_eqf(void); | |
29 void action_equ_import_winamp_presets(void); | |
30 void action_equ_save_preset(void); | |
31 void action_equ_save_auto_preset(void); | |
32 void action_equ_save_default_preset(void); | |
33 void action_equ_save_preset_file(void); | |
34 void action_equ_save_preset_eqf(void); | |
35 void action_equ_delete_preset(void); | |
36 void action_equ_delete_auto_preset(void); | |
37 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
3123
diff
changeset
|
38 #endif /* AUDACIOUS_ACTIONS_EQUALIZER_H */ |