1/* FluidSynth - A Software Synthesizer
2 *
3 * Copyright (C) 2003  Peter Hanappe and others.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public License
7 * as published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the Free
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 * 02111-1307, USA
19 */
20
21#ifndef _FLUIDSYNTH_TYPES_H
22#define _FLUIDSYNTH_TYPES_H
23
24
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30
31/*
32
33  Forward declarations
34
35*/
36typedef struct _fluid_hashtable_t fluid_settings_t;
37typedef struct _fluid_synth_t fluid_synth_t;
38typedef struct _fluid_voice_t fluid_voice_t;
39typedef struct _fluid_sfloader_t fluid_sfloader_t;
40typedef struct _fluid_sfont_t fluid_sfont_t;
41typedef struct _fluid_preset_t fluid_preset_t;
42typedef struct _fluid_sample_t fluid_sample_t;
43typedef struct _fluid_mod_t fluid_mod_t;
44typedef struct _fluid_audio_driver_t fluid_audio_driver_t;
45typedef struct _fluid_player_t fluid_player_t;
46typedef struct _fluid_midi_event_t fluid_midi_event_t;
47typedef struct _fluid_midi_driver_t fluid_midi_driver_t;
48typedef struct _fluid_midi_router_t fluid_midi_router_t;
49typedef struct _fluid_midi_router_rule_t fluid_midi_router_rule_t;
50typedef struct _fluid_hashtable_t fluid_cmd_handler_t;
51typedef struct _fluid_shell_t fluid_shell_t;
52typedef struct _fluid_server_t fluid_server_t;
53typedef struct _fluid_event_t fluid_event_t;
54typedef struct _fluid_sequencer_t fluid_sequencer_t;
55typedef struct _fluid_ramsfont_t fluid_ramsfont_t;
56typedef struct _fluid_rampreset_t fluid_rampreset_t;
57
58typedef int fluid_istream_t;
59typedef int fluid_ostream_t;
60
61
62#ifdef __cplusplus
63}
64#endif
65
66#endif /* _FLUIDSYNTH_TYPES_H */
67