summaryrefslogtreecommitdiff
path: root/dsppreset.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-01-05 22:15:34 +0100
committerGravatar waker <wakeroid@gmail.com>2011-01-05 22:16:20 +0100
commita031151153526ed6fd4390f05dfe40a411ca26e2 (patch)
treebefba9abab10d09063eb17fd4ed1f972ca5a6c57 /dsppreset.h
parent7f45bdddac21422cfb7e6380707f87c86a4e5a65 (diff)
added dsp preset functions to plugin api;
added dsp preset management to gtkui preferences window
Diffstat (limited to 'dsppreset.h')
-rw-r--r--dsppreset.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/dsppreset.h b/dsppreset.h
new file mode 100644
index 00000000..37354f9f
--- /dev/null
+++ b/dsppreset.h
@@ -0,0 +1,31 @@
+/*
+ DeaDBeeF - ultimate music player for GNU/Linux systems with X11
+ Copyright (C) 2009-2011 Alexey Yakovenko <waker@users.sourceforge.net>
+
+ 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; either version 2
+ of the License, or (at your option) any later version.
+
+ 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 __DSPPRESET_H
+#define __DSPPRESET_H
+
+void
+dsp_preset_free (ddb_dsp_context_t *head);
+
+int
+dsp_preset_load (const char *fname, ddb_dsp_context_t **head);
+
+int
+dsp_preset_save (const char *path, ddb_dsp_context_t *head);
+
+#endif