diff options
Diffstat (limited to 'common/rawaccel-version.h')
| -rw-r--r-- | common/rawaccel-version.h | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/common/rawaccel-version.h b/common/rawaccel-version.h index ce53b30..384ba6f 100644 --- a/common/rawaccel-version.h +++ b/common/rawaccel-version.h @@ -1,26 +1,36 @@ #pragma once #define RA_VER_MAJOR 1 -#define RA_VER_MINOR 4 -#define RA_VER_PATCH 4 +#define RA_VER_MINOR 5 +#define RA_VER_PATCH 0 #define RA_OS "Win7+" -#define M_STR_HELPER(x) #x -#define M_STR(x) M_STR_HELPER(x) +#define RA_M_STR_HELPER(x) #x +#define RA_M_STR(x) RA_M_STR_HELPER(x) -#define RA_VER_STRING M_STR(RA_VER_MAJOR) "." M_STR(RA_VER_MINOR) "." M_STR(RA_VER_PATCH) +#define RA_VER_STRING RA_M_STR(RA_VER_MAJOR) "." RA_M_STR(RA_VER_MINOR) "." RA_M_STR(RA_VER_PATCH) namespace rawaccel { - struct version_t { - int major; - int minor; - int patch; - }; - + struct version_t { + int major; + int minor; + int patch; + }; + + constexpr bool operator<(const version_t& lhs, const version_t& rhs) + { + return (lhs.major != rhs.major) ? + (lhs.major < rhs.major) : + (lhs.minor != rhs.minor) ? + (lhs.minor < rhs.minor) : + (lhs.patch < rhs.patch) ; + } + + inline constexpr version_t version = { RA_VER_MAJOR, RA_VER_MINOR, RA_VER_PATCH }; #ifndef _KERNEL_MODE - inline constexpr version_t min_driver_version = { 1, 4, 0 }; + inline constexpr version_t min_driver_version = { 1, 5, 0 }; #endif } |