15 lines
319 B
C
15 lines
319 B
C
#ifndef __VERSION_INFO_H__
|
|
|
|
#define REVISION 1034
|
|
|
|
#define FILEVER 3,4,0,REVISION
|
|
#define PRODUCTVER 3,4,0,REVISION
|
|
|
|
#define STR_HELPER(x) #x
|
|
#define STR(x) STR_HELPER(x)
|
|
|
|
#define STRFILEVER "3.4.0." STR(REVISION)
|
|
#define STRPRODUCTVER "3.4.0." STR(REVISION)
|
|
|
|
#endif //__VERSION_INFO_H__
|