BEAST - Free Software Audio Synthesizer and Tracker  0.10.0
bseconfig.h
Go to the documentation of this file.
1  // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
2 #ifndef __BSE_CONFIG_H__
3 #define __BSE_CONFIG_H__
4 
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif /* __cplusplus */
9 
10 
11 /* BSE version
12  */
13 #define BST_MAJOR_VERSION (0)
14 #define BST_MINOR_VERSION (10)
15 #define BST_MICRO_VERSION (0)
16 #define BSE_GETTEXT_DOMAIN ("beast-bse-0.10.0")
17 
18 /* check for header versions
19  */
20 #define BSE_CHECK_VERSION(major,minor,micro) \
21  (BST_MAJOR_VERSION > (major) || \
22  (BST_MAJOR_VERSION == (major) && BST_MINOR_VERSION > (minor)) || \
23  (BST_MAJOR_VERSION == (major) && BST_MINOR_VERSION == (minor) && \
24  BST_MICRO_VERSION >= (micro)))
25 
26 
27 #ifdef __cplusplus
28 }
29 #endif /* __cplusplus */
30 
31 #endif /* __BSE_CONFIG_H__ */