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
m417z
pykd
Commits
4de8114c
Commit
4de8114c
authored
Sep 02, 2019
by
ussrhero
Browse files
added setStatusMessage ( set a message at a windbg status bar )
parent
a3da177d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
kdlibcpp
kdlibcpp
+1
-1
pykd/pydbgio.h
pykd/pydbgio.h
+6
-0
pykd/pykdver.h
pykd/pykdver.h
+1
-1
pykd/pymod.cpp
pykd/pymod.cpp
+2
-0
No files found.
kdlibcpp
@
deda36a0
Compare
c79f0797
...
deda36a0
Subproject commit
c79f0797228b1436c41b700f4564eb986388bb35
Subproject commit
deda36a086494be526a5d62bf1b104cb780d7a07
pykd/pydbgio.h
View file @
4de8114c
...
...
@@ -49,6 +49,12 @@ inline void dinput(const std::wstring &str)
kdlib
::
dinput
(
str
);
}
inline
void
setStatusMessage
(
const
std
::
wstring
&
str
)
{
AutoRestorePyState
pystate
;
kdlib
::
setStatusMessage
(
str
);
}
///////////////////////////////////////////////////////////////////////////////
class
DbgOut
:
public
kdlib
::
windbg
::
WindbgOut
...
...
pykd/pykdver.h
View file @
4de8114c
...
...
@@ -2,7 +2,7 @@
#define PYKD_VERSION_MAJOR 0
#define PYKD_VERSION_MINOR 3
#define PYKD_VERSION_SUBVERSION 4
#define PYKD_VERSION_BUILDNO
8
#define PYKD_VERSION_BUILDNO
9
#define __VER_STR2__(x) #x
#define __VER_STR1__(x) __VER_STR2__(x)
...
...
pykd/pymod.cpp
View file @
4de8114c
...
...
@@ -230,6 +230,8 @@ void pykd_init()
"Print out string and insert end of line symbol. If dml = True string is printed with dml highlighting ( only for windbg )"
)
);
python
::
def
(
"dinput"
,
&
pykd
::
dinput
,
"Provide input for debugger"
);
python
::
def
(
"setStatusMessage"
,
&
pykd
::
setStatusMessage
,
"Set message at a windbg status bar"
);
// Python debug output console helper classes
...
...
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