mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 11:43:23 +08:00
15 lines
407 B
C
15 lines
407 B
C
|
|
#define PYKD_VERSION_MAJOR 0
|
|
#define PYKD_VERSION_MINOR 2
|
|
#define PYKD_VERSION_SUBVERSION 0
|
|
#define PYKD_VERSION_BUILDNO 25
|
|
|
|
|
|
#define __VER_STR2__(x) #x
|
|
#define __VER_STR1__(x) __VER_STR2__(x)
|
|
|
|
#define PYKD_VERSION_BUILD PYKD_VERSION_MAJOR, PYKD_VERSION_MINOR, PYKD_VERSION_SUBVERSION, PYKD_VERSION_BUILDNO
|
|
|
|
#define PYKD_VERSION_BUILD_STR __VER_STR1__(PYKD_VERSION_BUILD)
|
|
|