# HG changeset patch # User giacomo # Date 1167925201 28800 # Node ID bdac80a96f49cf8f536c261f9523cf20195b7dbe # Parent 32e570c6d808d0df3d934bd9196921685ee3bf99 [svn] - add missing actions-equalizer.h (these things love to be forgotten, it seems) diff -r 32e570c6d808 -r bdac80a96f49 ChangeLog --- a/ChangeLog Thu Jan 04 07:31:59 2007 -0800 +++ b/ChangeLog Thu Jan 04 07:40:01 2007 -0800 @@ -1,3 +1,13 @@ +2007-01-04 15:31:59 +0000 Giacomo Lozito + revision [3533] + - small copyright corrections + trunk/audacious/actions-mainwin.h | 7 ++----- + trunk/audacious/actions-playlist.h | 4 ++-- + trunk/audacious/playlist_manager.c | 2 +- + trunk/audacious/ui_manager.c | 2 +- + 4 files changed, 6 insertions(+), 9 deletions(-) + + 2007-01-04 13:45:38 +0000 Giacomo Lozito revision [3531] - given some decent namespacing to playlist menus (part 2, the end) diff -r 32e570c6d808 -r bdac80a96f49 audacious/actions-equalizer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacious/actions-equalizer.h Thu Jan 04 07:40:01 2007 -0800 @@ -0,0 +1,36 @@ +/* Audacious - Cross-platform multimedia player + * Copyright (C) 2005-2007 Audacious development team. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; under version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#ifndef ACTIONS_EQUALIZER_H +#define ACTIONS_EQUALIZER_H + +void action_equ_load_preset(void); +void action_equ_load_auto_preset(void); +void action_equ_load_default_preset(void); +void action_equ_zero_preset(void); +void action_equ_load_preset_file(void); +void action_equ_load_preset_eqf(void); +void action_equ_import_winamp_presets(void); +void action_equ_save_preset(void); +void action_equ_save_auto_preset(void); +void action_equ_save_default_preset(void); +void action_equ_save_preset_file(void); +void action_equ_save_preset_eqf(void); +void action_equ_delete_preset(void); +void action_equ_delete_auto_preset(void); + +#endif