wineps.drv: Use wine_dbgstr_rect() to print a RECT.
Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f18f44c505
commit
b06b96595b
|
@ -129,14 +129,8 @@ INT PSDRV_ExtEscape( PHYSDEV dev, INT nEscape, INT cbInput, LPCVOID in_data,
|
|||
BANDINFOSTRUCT *ibi = (BANDINFOSTRUCT*)in_data;
|
||||
BANDINFOSTRUCT *obi = (BANDINFOSTRUCT*)out_data;
|
||||
|
||||
FIXME("BANDINFO(graphics %d, text %d, rect [%dx%d-%dx%d]), stub!\n",
|
||||
ibi->GraphicsFlag,
|
||||
ibi->TextFlag,
|
||||
ibi->GraphicsRect.top,
|
||||
ibi->GraphicsRect.bottom,
|
||||
ibi->GraphicsRect.left,
|
||||
ibi->GraphicsRect.right
|
||||
);
|
||||
FIXME("BANDINFO(graphics %d, text %d, rect %s), stub!\n", ibi->GraphicsFlag,
|
||||
ibi->TextFlag, wine_dbgstr_rect(&ibi->GraphicsRect));
|
||||
*obi = *ibi;
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue