00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
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
00079 #include "fluidsynth/types.h"
00080 #include "fluidsynth/settings.h"
00081 #include "fluidsynth/synth.h"
00082 #include "fluidsynth/shell.h"
00083 #include "fluidsynth/sfont.h"
00084 #include "fluidsynth/ramsfont.h"
00085 #include "fluidsynth/audio.h"
00086 #include "fluidsynth/event.h"
00087 #include "fluidsynth/midi.h"
00088 #include "fluidsynth/seq.h"
00089 #include "fluidsynth/seqbind.h"
00090 #include "fluidsynth/log.h"
00091 #include "fluidsynth/misc.h"
00092 #include "fluidsynth/mod.h"
00093 #include "fluidsynth/gen.h"
00094 #include "fluidsynth/voice.h"
00095 #include "fluidsynth/version.h"
00096
00097
00098 #ifdef __cplusplus
00099 }
00100 #endif
00101
00102 #endif