changeset 2265:bdac80a96f49 trunk

[svn] - add missing actions-equalizer.h (these things love to be forgotten, it seems)
author giacomo
date Thu, 04 Jan 2007 07:40:01 -0800
parents 32e570c6d808
children 900f163cb243
files ChangeLog audacious/actions-equalizer.h
diffstat 2 files changed, 46 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 <james@develia.org>
+  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 <james@develia.org>
   revision [3531]
   - given some decent namespacing to playlist menus (part 2, the end)
--- /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