version.h 322 B

123456789101112131415
  1. #pragma once
  2. #define VERSION_MAJOR 2
  3. #define VERSION_MINOR 2
  4. #define VERSION_MICRO 3
  5. #define VERSION_DOT(a, b, c) a.b.c
  6. #define PLAYER_VERSION_NUMBER \
  7. VERSION_DOT(VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO)
  8. #define STR_HELPER(x) #x
  9. #define STR(x) STR_HELPER(x)
  10. #define PLAYER_VERSION STR(PLAYER_VERSION_NUMBER)