mirror of https://github.com/PrimeDecomp/prime.git
27 lines
519 B
C
27 lines
519 B
C
#ifndef _MUSYX_VERSION
|
|
#define _MUSYX_VERSION
|
|
|
|
|
|
#ifndef MUSY_VERSION_CHECK
|
|
#define MUSY_VERSION_CHECK(major, minor, patch) ((major << 16) | (minor << 8) | (patch))
|
|
#endif
|
|
|
|
#ifndef MUSY_VERSION_MAJOR
|
|
#define MUSY_VERSION_MAJOR 1
|
|
#endif
|
|
|
|
#ifndef MUSY_VERSION_MINOR
|
|
#define MUSY_VERSION_MINOR 5
|
|
#endif
|
|
|
|
#ifndef MUSY_VERSION_PATCH
|
|
#define MUSY_VERSION_PATCH 3
|
|
#endif
|
|
|
|
|
|
#ifndef MUSY_VERSION
|
|
#define MUSY_VERSION MUSY_VERSION_CHECK(MUSY_VERSION_MAJOR, MUSY_VERSION_MINOR, MUSY_VERSION_PATCH)
|
|
#endif
|
|
|
|
#endif // _MUSYX_VERSION
|