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_TYPES_H 00022 #define _FLUIDSYNTH_TYPES_H 00023 00024 00025 00026 #ifdef __cplusplus 00027 extern "C" { 00028 #endif 00029 00030 00031 /* 00032 00033 Forward declarations 00034 00035 */ 00036 typedef struct _fluid_hashtable_t fluid_settings_t; 00037 typedef struct _fluid_synth_t fluid_synth_t; 00038 typedef struct _fluid_voice_t fluid_voice_t; 00039 typedef struct _fluid_sfloader_t fluid_sfloader_t; 00040 typedef struct _fluid_sfont_t fluid_sfont_t; 00041 typedef struct _fluid_preset_t fluid_preset_t; 00042 typedef struct _fluid_sample_t fluid_sample_t; 00043 typedef struct _fluid_mod_t fluid_mod_t; 00044 typedef struct _fluid_audio_driver_t fluid_audio_driver_t; 00045 typedef struct _fluid_player_t fluid_player_t; 00046 typedef struct _fluid_midi_event_t fluid_midi_event_t; 00047 typedef struct _fluid_midi_driver_t fluid_midi_driver_t; 00048 typedef struct _fluid_midi_router_t fluid_midi_router_t; 00049 typedef struct _fluid_midi_router_rule_t fluid_midi_router_rule_t; 00050 typedef struct _fluid_hashtable_t fluid_cmd_handler_t; 00051 typedef struct _fluid_shell_t fluid_shell_t; 00052 typedef struct _fluid_server_t fluid_server_t; 00053 typedef struct _fluid_event_t fluid_event_t; 00054 typedef struct _fluid_sequencer_t fluid_sequencer_t; 00055 typedef struct _fluid_ramsfont_t fluid_ramsfont_t; 00056 typedef struct _fluid_rampreset_t fluid_rampreset_t; 00057 00058 typedef int fluid_istream_t; 00059 typedef int fluid_ostream_t; 00060 00061 00062 #ifdef __cplusplus 00063 } 00064 #endif 00065 00066 #endif /* _FLUIDSYNTH_TYPES_H */