00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
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
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