use right-side buttons to goto_nth_marker()
[ardour.git] / libs / fluidsynth / fluidsynth / types.h
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  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18  * 02110-1301, USA
19  */
20
21 #ifndef _FLUIDSYNTH_TYPES_H
22 #define _FLUIDSYNTH_TYPES_H
23
24
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30
31 /**
32  * @file types.h
33  * @brief Type declarations
34  */
35
36 typedef struct _fluid_hashtable_t fluid_settings_t;             /**< Configuration settings instance */
37 typedef struct _fluid_synth_t fluid_synth_t;                    /**< Synthesizer instance */
38 typedef struct _fluid_synth_channel_info_t fluid_synth_channel_info_t;  /**< SoundFont channel info */
39 typedef struct _fluid_voice_t fluid_voice_t;                    /**< Synthesis voice instance */
40 typedef struct _fluid_sfloader_t fluid_sfloader_t;              /**< SoundFont loader plugin */
41 typedef struct _fluid_sfont_t fluid_sfont_t;                    /**< SoundFont */
42 typedef struct _fluid_preset_t fluid_preset_t;                  /**< SoundFont preset */
43 typedef struct _fluid_sample_t fluid_sample_t;                  /**< SoundFont sample */
44 typedef struct _fluid_mod_t fluid_mod_t;                        /**< SoundFont modulator */
45 typedef struct _fluid_audio_driver_t fluid_audio_driver_t;      /**< Audio driver instance */
46 typedef struct _fluid_file_renderer_t fluid_file_renderer_t;    /**< Audio file renderer instance */
47 typedef struct _fluid_player_t fluid_player_t;                  /**< MIDI player instance */
48 typedef struct _fluid_midi_event_t fluid_midi_event_t;          /**< MIDI event */
49 typedef struct _fluid_midi_driver_t fluid_midi_driver_t;        /**< MIDI driver instance */
50 typedef struct _fluid_midi_router_t fluid_midi_router_t;        /**< MIDI router instance */
51 typedef struct _fluid_midi_router_rule_t fluid_midi_router_rule_t;      /**< MIDI router rule */
52 typedef struct _fluid_hashtable_t fluid_cmd_handler_t;          /**< Command handler */
53 typedef struct _fluid_shell_t fluid_shell_t;                    /**< Command shell */
54 typedef struct _fluid_server_t fluid_server_t;                  /**< TCP/IP shell server instance */
55 typedef struct _fluid_event_t fluid_event_t;                    /**< Sequencer event */
56 typedef struct _fluid_sequencer_t fluid_sequencer_t;            /**< Sequencer instance */
57 typedef struct _fluid_ramsfont_t fluid_ramsfont_t;              /**< RAM SoundFont */
58 typedef struct _fluid_rampreset_t fluid_rampreset_t;            /**< RAM SoundFont preset */
59
60 typedef int fluid_istream_t;    /**< Input stream descriptor */
61 typedef int fluid_ostream_t;    /**< Output stream descriptor */
62
63
64 #ifdef __cplusplus
65 }
66 #endif
67
68 #endif /* _FLUIDSYNTH_TYPES_H */