mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 11:53:23 +08:00
[pykd_ext] fixed : issue #4 ( output is copied from am additional command window to the main )
This commit is contained in:
parent
1eec5fafa5
commit
e44c85414d
@ -26,7 +26,7 @@ public:
|
||||
AutoRestorePyState pystate;
|
||||
|
||||
m_control->ControlledOutputWide(
|
||||
DEBUG_OUTCTL_ALL_CLIENTS,
|
||||
DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_THIS_CLIENT,
|
||||
DEBUG_OUTPUT_NORMAL,
|
||||
L"%ws",
|
||||
str.c_str()
|
||||
@ -39,7 +39,7 @@ public:
|
||||
AutoRestorePyState pystate;
|
||||
|
||||
m_control->ControlledOutputWide(
|
||||
DEBUG_OUTCTL_ALL_CLIENTS | DEBUG_OUTCTL_DML,
|
||||
DEBUG_OUTCTL_AMBIENT_DML, //DEBUG_OUTCTL_THIS_CLIENT | DEBUG_OUTCTL_DML,
|
||||
DEBUG_OUTPUT_NORMAL,
|
||||
L"%ws",
|
||||
str.c_str()
|
||||
|
@ -3,7 +3,7 @@
|
||||
#define PYKDEXT_VERSION_MAJOR 2
|
||||
#define PYKDEXT_VERSION_MINOR 0
|
||||
#define PYKDEXT_VERSION_SUBVERSION 0
|
||||
#define PYKDEXT_VERSION_BUILDNO 13
|
||||
#define PYKDEXT_VERSION_BUILDNO 14
|
||||
|
||||
#define __VER_STR2__(x) #x
|
||||
#define __VER_STR1__(x) __VER_STR2__(x)
|
||||
|
@ -438,7 +438,7 @@ py(
|
||||
CComQIPtr<IDebugControl> control = client;
|
||||
|
||||
control->ControlledOutput(
|
||||
DEBUG_OUTCTL_ALL_CLIENTS,
|
||||
DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_ALL_CLIENTS,
|
||||
DEBUG_OUTPUT_ERROR,
|
||||
e.what()
|
||||
);
|
||||
@ -508,7 +508,7 @@ pip(
|
||||
CComQIPtr<IDebugControl> control = client;
|
||||
|
||||
control->ControlledOutput(
|
||||
DEBUG_OUTCTL_ALL_CLIENTS,
|
||||
DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_ALL_CLIENTS,
|
||||
DEBUG_OUTPUT_ERROR,
|
||||
e.what()
|
||||
);
|
||||
|
@ -8,7 +8,7 @@ import sys
|
||||
|
||||
_name = "pykd"
|
||||
_desc = "python windbg extension"
|
||||
_version = '0.3.3.1'
|
||||
_version = '0.3.3.2'
|
||||
|
||||
def getReleaseSrc():
|
||||
return 'Release_%d.%d' % sys.version_info[0:2]
|
||||
|
Loading…
Reference in New Issue
Block a user