OpenHantek
OH_VERSION.h
Go to the documentation of this file.
1 // define the version that is shown on top of the program
2 // if undefined (for development commits) the build will be shown by OpenHantek
3 
4 #define OH_VERSION "3.0.3"
5 
6 
7 # ifdef OH_VERSION
8 # undef VERSION
9 # define VERSION OH_VERSION
10 # else
11 # include "OH_BUILD.h"
12 # ifdef OH_BUILD
13 # undef VERSION
14 # define VERSION OH_BUILD
15 # endif
16 # endif