BEAST/BSE - Better Audio System and Sound Engine
0.8.2
|
00001 // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html 00002 #ifndef __BSE_CONFIG_H__ 00003 #define __BSE_CONFIG_H__ 00004 00005 00006 #ifdef __cplusplus 00007 extern "C" { 00008 #endif /* __cplusplus */ 00009 00010 00011 /* BSE version 00012 */ 00013 #define BSE_MAJOR_VERSION (0) 00014 #define BSE_MINOR_VERSION (8) 00015 #define BSE_MICRO_VERSION (2) 00016 #define BSE_BINARY_AGE (0) 00017 #define BSE_INTERFACE_AGE (0) 00018 #define BSE_GETTEXT_DOMAIN ("beast-v0.8.2") 00019 00020 /* check for header versions 00021 */ 00022 #define BSE_CHECK_VERSION(major,minor,micro) \ 00023 (BSE_MAJOR_VERSION > (major) || \ 00024 (BSE_MAJOR_VERSION == (major) && BSE_MINOR_VERSION > (minor)) || \ 00025 (BSE_MAJOR_VERSION == (major) && BSE_MINOR_VERSION == (minor) && \ 00026 BSE_MICRO_VERSION >= (micro))) 00027 00028 00029 #ifdef __cplusplus 00030 } 00031 #endif /* __cplusplus */ 00032 00033 #endif /* __BSE_CONFIG_H__ */