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:
SND\kernelnet_cp 2010-07-12 16:03:13 +00:00
parent 3269c5fdc4
commit 5b7de9d7f8

View File

@ -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" );
} }