BEAST
- Free Software Audio Synthesizer and Tracker
0.9.2
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
bse
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 (9)
15
#define BST_MICRO_VERSION (2)
16
#define BSE_GETTEXT_DOMAIN ("beast-v0.9.2")
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__ */
Generated on Wed Sep 16 2015 09:58:45 for BEAST - Free Software Audio Synthesizer and Tracker by
1.8.9.1