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.
 
 
 

7 lines
181 B

#include "version.h"
#define VERSION(main, sub, fix) (main << 16 | sub << 8 | fix << 0)
int32_t APP_VERSION = VERSION(1, 0, 0);
int32_t get_app_version() { return APP_VERSION; }