[pykd_ext] fixed : issue #4 ( output is copied from am additional command window to the main )

This commit is contained in:
ussrhero 2017-12-27 20:50:06 +03:00
parent 1eec5fafa5
commit e44c85414d
4 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@ public:
AutoRestorePyState pystate; AutoRestorePyState pystate;
m_control->ControlledOutputWide( m_control->ControlledOutputWide(
DEBUG_OUTCTL_ALL_CLIENTS, DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_THIS_CLIENT,
DEBUG_OUTPUT_NORMAL, DEBUG_OUTPUT_NORMAL,
L"%ws", L"%ws",
str.c_str() str.c_str()
@ -39,7 +39,7 @@ public:
AutoRestorePyState pystate; AutoRestorePyState pystate;
m_control->ControlledOutputWide( m_control->ControlledOutputWide(
DEBUG_OUTCTL_ALL_CLIENTS | DEBUG_OUTCTL_DML, DEBUG_OUTCTL_AMBIENT_DML, //DEBUG_OUTCTL_THIS_CLIENT | DEBUG_OUTCTL_DML,
DEBUG_OUTPUT_NORMAL, DEBUG_OUTPUT_NORMAL,
L"%ws", L"%ws",
str.c_str() str.c_str()

View File

@ -3,7 +3,7 @@
#define PYKDEXT_VERSION_MAJOR 2 #define PYKDEXT_VERSION_MAJOR 2
#define PYKDEXT_VERSION_MINOR 0 #define PYKDEXT_VERSION_MINOR 0
#define PYKDEXT_VERSION_SUBVERSION 0 #define PYKDEXT_VERSION_SUBVERSION 0
#define PYKDEXT_VERSION_BUILDNO 13 #define PYKDEXT_VERSION_BUILDNO 14
#define __VER_STR2__(x) #x #define __VER_STR2__(x) #x
#define __VER_STR1__(x) __VER_STR2__(x) #define __VER_STR1__(x) __VER_STR2__(x)

View File

@ -438,7 +438,7 @@ py(
CComQIPtr<IDebugControl> control = client; CComQIPtr<IDebugControl> control = client;
control->ControlledOutput( control->ControlledOutput(
DEBUG_OUTCTL_ALL_CLIENTS, DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_ALL_CLIENTS,
DEBUG_OUTPUT_ERROR, DEBUG_OUTPUT_ERROR,
e.what() e.what()
); );
@ -508,7 +508,7 @@ pip(
CComQIPtr<IDebugControl> control = client; CComQIPtr<IDebugControl> control = client;
control->ControlledOutput( control->ControlledOutput(
DEBUG_OUTCTL_ALL_CLIENTS, DEBUG_OUTCTL_AMBIENT_TEXT, //DEBUG_OUTCTL_ALL_CLIENTS,
DEBUG_OUTPUT_ERROR, DEBUG_OUTPUT_ERROR,
e.what() e.what()
); );

View File

@ -8,7 +8,7 @@ import sys
_name = "pykd" _name = "pykd"
_desc = "python windbg extension" _desc = "python windbg extension"
_version = '0.3.3.1' _version = '0.3.3.2'
def getReleaseSrc(): def getReleaseSrc():
return 'Release_%d.%d' % sys.version_info[0:2] return 'Release_%d.%d' % sys.version_info[0:2]