| 1 | #pragma once |
| 2 | |
| 3 | #define BS_VERSION_MAJOR 1 |
| 4 | #define BS_VERSION_MINOR 1 |
| 5 | #define BS_VERSION_PATCH 0 |
| 6 | #define BS_CURRENT_RELEASE_YEAR 2019 |
| 7 | |
| 8 | |
| 9 | #ifndef _STR |
| 10 | #define _STR(m_x) #m_x |
| 11 | /** |
| 12 | * This macro converts the preprocessor defined macro into textual form. |
| 13 | * @note Currently used internally for binary information in Win32 resource files |
| 14 | */ |
| 15 | #define _MKSTR(m_x) _STR(m_x) |
| 16 | #endif |
| 17 | |
| 18 | #define BS_VERSION_STRING _MKSTR(BS_VERSION_MAJOR) "." _MKSTR(BS_VERSION_MINOR) "." _MKSTR(BS_VERSION_PATCH) ".0" |
| 19 | |
| 20 | #define BS_IS_BANSHEE3D 0 |
| 21 | |