Commit 9182b24b authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

include: Remove unused wine_dbgstr_size().

parent 148d0e45
......@@ -199,12 +199,6 @@ static inline const char *wine_dbgstr_point( const POINT *pt )
return wine_dbg_sprintf( "(%d,%d)", pt->x, pt->y );
}
static inline const char *wine_dbgstr_size( const SIZE *size )
{
if (!size) return "(null)";
return wine_dbg_sprintf( "(%d,%d)", size->cx, size->cy );
}
static inline const char *wine_dbgstr_rect( const RECT *rect )
{
if (!rect) return "(null)";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment