2003-03-11 16:56:45 +00:00
|
|
|
/* FluidSynth - A Software Synthesizer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Peter Hanappe and others.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2017-07-12 15:45:23 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
2017-07-12 15:53:03 +00:00
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
2003-03-11 16:56:45 +00:00
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
2017-07-12 15:45:23 +00:00
|
|
|
* Lesser General Public License for more details.
|
2007-03-04 16:45:05 +00:00
|
|
|
*
|
2017-07-12 15:54:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2003-03-11 16:56:45 +00:00
|
|
|
* License along with this library; if not, write to the Free
|
2011-08-15 12:57:10 +00:00
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA
|
2003-03-11 16:56:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FLUID_AUDRIVER_H
|
|
|
|
#define _FLUID_AUDRIVER_H
|
|
|
|
|
2017-10-21 10:40:38 +00:00
|
|
|
#include "fluid_sys.h"
|
2003-03-11 16:56:45 +00:00
|
|
|
|
|
|
|
void fluid_audio_driver_settings(fluid_settings_t* settings);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fluid_audio_driver_t
|
|
|
|
*/
|
|
|
|
|
2007-03-04 16:45:05 +00:00
|
|
|
struct _fluid_audio_driver_t
|
2003-03-11 16:56:45 +00:00
|
|
|
{
|
2017-10-21 10:40:38 +00:00
|
|
|
const char* name;
|
2003-03-11 16:56:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _FLUID_AUDRIVER_H */
|