12 #define LIBSMU_VERSION_MAJOR 1 15 #define LIBSMU_VERSION_MINOR 0 18 #define LIBSMU_VERSION_PATCH 4 21 #define LIBSMU_VERSION ((LIBSMU_VERSION_MAJOR << 16) |\ 22 (LIBSMU_VERSION_MINOR << 8) |\ 26 #define LIBSMU_VERSION_STR "1.0.4" 29 inline const char* libsmu_version_str() {
34 inline uint32_t libsmu_version_major() {
39 inline uint32_t libsmu_version_minor() {
44 inline uint32_t libsmu_version_patch() {
#define LIBSMU_VERSION_PATCH
The patch version of the libsmu library (0.0.X).
Definition: version.hpp:18
#define LIBSMU_VERSION_MAJOR
The major version of the libsmu library (X.0.0).
Definition: version.hpp:12
#define LIBSMU_VERSION_STR
A string representing the libsmu library version.
Definition: version.hpp:26
#define LIBSMU_VERSION_MINOR
The minor version of the libsmu library (0.X.0).
Definition: version.hpp:15