From a031151153526ed6fd4390f05dfe40a411ca26e2 Mon Sep 17 00:00:00 2001 From: waker Date: Wed, 5 Jan 2011 22:15:34 +0100 Subject: added dsp preset functions to plugin api; added dsp preset management to gtkui preferences window --- dsppreset.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dsppreset.h (limited to 'dsppreset.h') 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 + + 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 -- cgit v1.2.3