blob: 9470ca0787245042dd80f6056c665b35abead369 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#define RA_VER_MAJOR 1
#define RA_VER_MINOR 3
#define RA_VER_PATCH 0
#define RA_MIN_OS "Win7"
#define M_STR_HELPER(x) #x
#define M_STR(x) M_STR_HELPER(x)
#define RA_VER_STRING M_STR(RA_VER_MAJOR) "." M_STR(RA_VER_MINOR) "." M_STR(RA_VER_PATCH)
namespace rawaccel {
struct version_t {
int major;
int minor;
int patch;
};
#ifndef _KERNEL_MODE
inline constexpr version_t min_driver_version = { 1, 3, 0 };
#endif
}
|