Add files via upload
[fluidsynth-winbin.git] / bin64 / fluidsynth-2.0.9 / usr / include / fluidsynth / version.h
blob41654478050af11e30330da1d7069db7bee85a99
1 /* FluidSynth - A Software Synthesizer
3 * Copyright (C) 2003 Peter Hanappe and others.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 2.1 of
8 * the License, or (at your option) any later version.
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 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser 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
21 #ifndef _FLUIDSYNTH_VERSION_H
22 #define _FLUIDSYNTH_VERSION_H
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 /**
30 * @file version.h
31 * @brief Library version functions and defines
34 #define FLUIDSYNTH_VERSION "2.0.8" /**< String constant of libfluidsynth version. */
35 #define FLUIDSYNTH_VERSION_MAJOR 2 /**< libfluidsynth major version integer constant. */
36 #define FLUIDSYNTH_VERSION_MINOR 0 /**< libfluidsynth minor version integer constant. */
37 #define FLUIDSYNTH_VERSION_MICRO 8 /**< libfluidsynth micro version integer constant. */
39 FLUIDSYNTH_API void fluid_version(int *major, int *minor, int *micro);
40 FLUIDSYNTH_API char* fluid_version_str(void);
43 #ifdef __cplusplus
45 #endif
47 #endif /* _FLUIDSYNTH_VERSION_H */