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

[0.2.x] added : getCurrentTime routine ( return the number of seconds since the beginning of 1970 at the target system ) git-svn-id: https://pykd.svn.codeplex.com/svn@82391 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 16
|
|
|
|
|
|
#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)
|
|
|