Welcome to mirror list, hosted at ThFree Co, Russian Federation.

version.h - github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c60b07fcf1429395b525c8e223df23588ed8759a (plain)
1
2
3
4
5
6
7
8
9
10
11
#define GC_VERSION_MAJOR 6
#define GC_VERSION_MINOR 0
#define GC_ALPHA_VERSION 3

#   define GC_NOT_ALPHA 0xff

#ifndef GC_NO_VERSION_VAR

unsigned GC_version = ((GC_VERSION_MAJOR << 16) | (GC_VERSION_MINOR << 8) | GC_ALPHA_VERSION);

#endif /* GC_NO_VERSION_VAR */