You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
301 B

1 year ago
1 year ago
1 year ago
1 month ago
1 year ago
  1. #pragma once
  2. #define VERSION(main, sub, fix) (main << 16 | sub << 8 | fix << 0)
  3. #define APP_VERSION VERSION(1, 0, 6)
  4. #define APP_VERSION_STR "1.0.4"
  5. #define APP_VERSION_MAIN VERSION_MAIN(APP_VERSION)
  6. #define APP_VERSION_SUB VERSION_SUB(APP_VERSION)
  7. #define APP_VERSION_FIX VERSION_FIX(APP_VERSION)