mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 12:53:23 +08:00
DML syntax for dprint supported
git-svn-id: https://pykd.svn.codeplex.com/svn@51469 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
3269c5fdc4
commit
5b7de9d7f8
@ -6,11 +6,11 @@ using namespace std;
|
|||||||
|
|
||||||
void DbgPrint::dprint( const string& str )
|
void DbgPrint::dprint( const string& str )
|
||||||
{
|
{
|
||||||
g_Ext->Out( str.c_str() );
|
g_Ext->Dml( str.c_str() );
|
||||||
}
|
}
|
||||||
|
|
||||||
void DbgPrint::dprintln( const std::string& str )
|
void DbgPrint::dprintln( const std::string& str )
|
||||||
{
|
{
|
||||||
g_Ext->Out( str.c_str() );
|
g_Ext->Dml( str.c_str() );
|
||||||
g_Ext->Out( "\r\n" );
|
g_Ext->Dml( "\r\n" );
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user