Add files via upload
[fluidsynth-winbin.git] / bin64 / fluidsynth-1.1.6 / include / fluidsynth / version.h
blob5f35686bd6e5a198640343dddefedd41203a6f7e
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 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.
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.
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
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 "1.1.6" /**< String constant of libfluidsynth version. */
35 #define FLUIDSYNTH_VERSION_MAJOR 1 /**< libfluidsynth major version integer constant. */
36 #define FLUIDSYNTH_VERSION_MINOR 1 /**< libfluidsynth minor version integer constant. */
37 #define FLUIDSYNTH_VERSION_MICRO 6 /**< 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 */