Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
kdlibcpp
kdlibcpp
Commits
3625e55d
Commit
3625e55d
authored
Mar 14, 2020
by
ussrhero
Browse files
Merge branch 'patch-1' into 'dev-1.0'
Update dbgmgr.cpp to fix issue 66 See merge request
!26
parents
4497f4db
7d47c15a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
473 additions
and
476 deletions
+473
-476
kdlib/source/win/dbgmgr.cpp
kdlib/source/win/dbgmgr.cpp
+473
-476
No files found.
kdlib/source/win/dbgmgr.cpp
View file @
3625e55d
...
...
@@ -40,7 +40,7 @@ DebugManager::DebugManager()
client
->
SetOutputCallbacksWide
(
this
);
client
->
SetInputCallbacks
(
this
);
client
->
SetOutputMask
(
DEBUG_OUTPUT_NORMAL
);
client
->
SetOutputMask
(
DEBUG_OUTPUT_NORMAL
|
DEBUG_OUTPUT_ERROR
|
DEBUG_OUTPUT_WARNING
);
}
///////////////////////////////////////////////////////////////////////////////
...
...
@@ -72,7 +72,7 @@ DebugManager::DebugManager( const std::wstring& remoteOptions )
client
->
SetOutputCallbacksWide
(
this
);
client
->
SetOutputMask
(
DEBUG_OUTPUT_NORMAL
);
client
->
SetOutputMask
(
DEBUG_OUTPUT_NORMAL
|
DEBUG_OUTPUT_ERROR
|
DEBUG_OUTPUT_WARNING
);
}
///////////////////////////////////////////////////////////////////////////////
...
...
@@ -461,10 +461,7 @@ HRESULT STDMETHODCALLTYPE OutputReader::Output(
__in
ULONG
Mask
,
__in
PCSTR
Text
)
{
if
(
Mask
==
DEBUG_OUTPUT_NORMAL
)
{
m_readLine
+=
_bstr_t
(
Text
);
}
return
S_OK
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment