mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 11:43:23 +08:00

[0.2.x] fixed : killProcess correctly detaching from target now git-svn-id: https://pykd.svn.codeplex.com/svn@86120 9b283d60-5439-405e-af05-b73fd8c4d996
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 26
|
|
|
|
|
|
#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)
|
|
|