BEAST/BSE
- Better Audio System and Sound Engine
0.9.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
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 (0)
16
#define BSE_GETTEXT_DOMAIN ("beast-v0.9.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__ */
Generated on Tue Oct 28 2014 15:03:40 for BEAST/BSE - Better Audio System and Sound Engine by
1.8.6