19 #ifndef ANBOX_SDK_PLATFORM_VERSION_H_
20 #define ANBOX_SDK_PLATFORM_VERSION_H_
24 #define ANBOX_PLATFORM_MAJOR_VERSION 1
25 #define ANBOX_PLATFORM_MINOR_VERSION 23
26 #define ANBOX_PLATFORM_PATCH_VERSION 0
28 #define ANBOX_PLATFORM_VERSION 12300
41 major = ((version / 10000) % 100);
42 minor = ((version / 100) % 100);
43 patch = (version % 100);
void anbox_platform_get_versions(uint32_t version, uint32_t &major, uint32_t &minor, uint32_t &patch)
Get the individual version numbers from the combined version number.