blob: c40e8ff969c6d30a3c7b2882c743d344d363bd2d (
plain)
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
|
/* -------------------------------------------
Copyright ZKA Technologies.
Purpose: DDK versioning.
------------------------------------------- */
#include <KernelStd.h>
#ifndef cDDKVersionHighest
#define cDDKVersionHighest 1
#endif // !cDDKVersionHighest
#ifndef cDDKVersionLowest
#define cDDKVersionLowest 1
#endif // !cDDKVersionLowest
#ifndef cDDKVersion
#define cDDKVersion 1
#endif // !cDDKVersion
int32_t c_api_version_highest = cDDKVersionHighest;
int32_t c_api_version_least = cDDKVersionLowest;
int32_t c_api_version = cDDKVersion;
|