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

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_MISC_H
  21. #define _FLUIDSYNTH_MISC_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26.  * @file misc.h
  27.  * @brief Miscellaneous utility functions and defines
  28.  */
  29. /**
  30.  * Value that indicates success, used by most libfluidsynth functions.
  31.  * @since 1.1.0
  32.  *
  33.  * NOTE: This was not publicly defined prior to libfluidsynth 1.1.0.  When
  34.  * writing code which should also be compatible with older versions, something
  35.  * like the following can be used:
  36.  *
  37.  * @code
  38.  *   #include <fluidsynth.h>
  39.  *
  40.  *   #ifndef FLUID_OK
  41.  *   #define FLUID_OK      (0)
  42.  *   #define FLUID_FAILED  (-1)
  43.  *   #endif
  44.  * @endcode
  45.  */
  46. #define FLUID_OK        (0)
  47. /**
  48.  * Value that indicates failure, used by most libfluidsynth functions.
  49.  * @since 1.1.0
  50.  *
  51.  * NOTE: See #FLUID_OK for more details.
  52.  */
  53. #define FLUID_FAILED    (-1)
  54. FLUIDSYNTH_API int fluid_is_soundfont (const char *filename);
  55. FLUIDSYNTH_API int fluid_is_midifile (const char *filename);
  56. #ifdef WIN32
  57. FLUIDSYNTH_API void* fluid_get_hinstance(void);
  58. FLUIDSYNTH_API void fluid_set_hinstance(void* hinstance);
  59. #endif
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* _FLUIDSYNTH_MISC_H */