types.h
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:3k
源码类别:

midi

开发平台:

C/C++

  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. #ifndef _FLUIDSYNTH_TYPES_H
  21. #define _FLUIDSYNTH_TYPES_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26.  * @file types.h
  27.  * @brief Type declarations
  28.  */
  29. typedef struct _fluid_hashtable_t fluid_settings_t;             /**< Configuration settings instance */
  30. typedef struct _fluid_synth_t fluid_synth_t;                    /**< Synthesizer instance */
  31. typedef struct _fluid_synth_channel_info_t fluid_synth_channel_info_t;  /**< SoundFont channel info */
  32. typedef struct _fluid_voice_t fluid_voice_t;                    /**< Synthesis voice instance */
  33. typedef struct _fluid_sfloader_t fluid_sfloader_t;              /**< SoundFont loader plugin */
  34. typedef struct _fluid_sfont_t fluid_sfont_t;                    /**< SoundFont */
  35. typedef struct _fluid_preset_t fluid_preset_t;                  /**< SoundFont preset */
  36. typedef struct _fluid_sample_t fluid_sample_t;                  /**< SoundFont sample */
  37. typedef struct _fluid_mod_t fluid_mod_t;                        /**< SoundFont modulator */
  38. typedef struct _fluid_audio_driver_t fluid_audio_driver_t;      /**< Audio driver instance */
  39. typedef struct _fluid_file_renderer_t fluid_file_renderer_t;    /**< Audio file renderer instance */
  40. typedef struct _fluid_player_t fluid_player_t;                  /**< MIDI player instance */
  41. typedef struct _fluid_midi_event_t fluid_midi_event_t;          /**< MIDI event */
  42. typedef struct _fluid_midi_driver_t fluid_midi_driver_t;        /**< MIDI driver instance */
  43. typedef struct _fluid_midi_router_t fluid_midi_router_t;        /**< MIDI router instance */
  44. typedef struct _fluid_midi_router_rule_t fluid_midi_router_rule_t;      /**< MIDI router rule */
  45. typedef struct _fluid_hashtable_t fluid_cmd_handler_t;          /**< Command handler */
  46. typedef struct _fluid_shell_t fluid_shell_t;                    /**< Command shell */
  47. typedef struct _fluid_server_t fluid_server_t;                  /**< TCP/IP shell server instance */
  48. typedef struct _fluid_event_t fluid_event_t;                    /**< Sequencer event */
  49. typedef struct _fluid_sequencer_t fluid_sequencer_t;            /**< Sequencer instance */
  50. typedef struct _fluid_ramsfont_t fluid_ramsfont_t;              /**< RAM SoundFont */
  51. typedef struct _fluid_rampreset_t fluid_rampreset_t;            /**< RAM SoundFont preset */
  52. typedef int fluid_istream_t;    /**< Input stream descriptor */
  53. typedef int fluid_ostream_t;    /**< Output stream descriptor */
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* _FLUIDSYNTH_TYPES_H */