mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Add wine_dbgstr_w
svn path=/trunk/; revision=13004
This commit is contained in:
parent
222cd13d93
commit
5468d049be
1 changed files with 5 additions and 0 deletions
|
@ -222,3 +222,8 @@ const char *wine_dbg_sprintf( const char *format, ... )
|
||||||
|
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *wine_dbgstr_w( const WCHAR *s )
|
||||||
|
{
|
||||||
|
return wine_dbgstr_wn( s, -1 );
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue