8 #ifndef GLSTATS_VERSION_H 9 #define GLSTATS_VERSION_H 17 # define GLSTATS_VERSION_MAJOR 0 20 # define GLSTATS_VERSION_MINOR 3 23 # define GLSTATS_VERSION_PATCH 3 26 # define GLSTATS_VERSION_REVISION 0x836dd5e 29 # define GLSTATS_VERSION_ABI 1 32 # define GLSTATS_VERSION_GT( MAJOR, MINOR, PATCH ) \ 33 ( (GLSTATS_VERSION_MAJOR>MAJOR) || \ 34 (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR>MINOR || \ 35 (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH>PATCH)))) 38 # define GLSTATS_VERSION_GE( MAJOR, MINOR, PATCH ) \ 39 ( (GLSTATS_VERSION_MAJOR>MAJOR) || \ 40 (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR>MINOR || \ 41 (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH>=PATCH)))) 44 # define GLSTATS_VERSION_LT( MAJOR, MINOR, PATCH ) \ 45 ( (GLSTATS_VERSION_MAJOR<MAJOR) || \ 46 (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR<MINOR || \ 47 (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH<PATCH)))) 50 # define GLSTATS_VERSION_LE( MAJOR, MINOR, PATCH ) \ 51 ( (GLSTATS_VERSION_MAJOR<MAJOR) || \ 52 (GLSTATS_VERSION_MAJOR==MAJOR && (GLSTATS_VERSION_MINOR<MINOR || \ 53 (GLSTATS_VERSION_MINOR==MINOR && GLSTATS_VERSION_PATCH<=PATCH)))) 60 static int getMajor();
63 static int getMinor();
66 static int getPatch();
69 static std::string getString();
72 static int getRevision();
78 static std::string getRevString();
101 "description": "Version information of the running application", 103 "major": { "type": "integer" }, 104 "minor": { "type": "integer" }, 105 "patch": { "type": "integer" }, 106 "abi": { "type": "integer" }, 107 "revision": { "type": "string" } 122 "revision": "836dd5e" static std::string toJSON()
Defines export visibility macros for library GLStats.
static std::string getSchema()
#define GLSTATS_VERSION_MINOR
The current minor version.
#define GLSTATS_VERSION_MAJOR
The current major version.
Basic type definitions not provided by the operating system.
static bool check()
Runtime check for ABI compatibility.
Information about the current GLStats version.