00001 /* FluidSynth - A Software Synthesizer 00002 * 00003 * Copyright (C) 2003 Peter Hanappe and others. 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Library General Public License 00007 * as published by the Free Software Foundation; either version 2 of 00008 * the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, but 00011 * WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Library General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Library General Public 00016 * License along with this library; if not, write to the Free 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 00018 * 02111-1307, USA 00019 */ 00020 00021 #ifndef _FLUIDSYNTH_H 00022 #define _FLUIDSYNTH_H 00023 00024 #include <stdio.h> 00025 00026 #ifdef __cplusplus 00027 extern "C" { 00028 #endif 00029 00030 #if defined(WIN32) 00031 #if defined(FLUIDSYNTH_DLL_EXPORTS) 00032 #define FLUIDSYNTH_API __declspec(dllexport) 00033 #elif defined(FLUIDSYNTH_NOT_A_DLL) 00034 #define FLUIDSYNTH_API 00035 #else 00036 #define FLUIDSYNTH_API __declspec(dllimport) 00037 #endif 00038 00039 #elif defined(MACOS9) 00040 #define FLUIDSYNTH_API __declspec(export) 00041 00042 #else 00043 #define FLUIDSYNTH_API 00044 #endif 00045 00046 00082 #include "fluidsynth/types.h" 00083 #include "fluidsynth/settings.h" 00084 #include "fluidsynth/synth.h" 00085 #include "fluidsynth/shell.h" 00086 #include "fluidsynth/sfont.h" 00087 #include "fluidsynth/ramsfont.h" 00088 #include "fluidsynth/audio.h" 00089 #include "fluidsynth/event.h" 00090 #include "fluidsynth/midi.h" 00091 #include "fluidsynth/seq.h" 00092 #include "fluidsynth/seqbind.h" 00093 #include "fluidsynth/log.h" 00094 #include "fluidsynth/misc.h" 00095 #include "fluidsynth/mod.h" 00096 #include "fluidsynth/gen.h" 00097 #include "fluidsynth/voice.h" 00098 #include "fluidsynth/version.h" 00099 00100 00101 #ifdef __cplusplus 00102 } 00103 #endif 00104 00105 #endif /* _FLUIDSYNTH_H */