gdi32: Trace full contents of DOCINFO in StartDoc.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9ad2d036aa
commit
7933f7beef
|
@ -72,9 +72,9 @@ INT WINAPI StartDocW(HDC hdc, const DOCINFOW* doc)
|
||||||
INT ret;
|
INT ret;
|
||||||
DC *dc = get_dc_ptr( hdc );
|
DC *dc = get_dc_ptr( hdc );
|
||||||
|
|
||||||
TRACE("DocName = %s Output = %s Datatype = %s\n",
|
TRACE("DocName %s, Output %s, Datatype %s, fwType %#x\n",
|
||||||
debugstr_w(doc->lpszDocName), debugstr_w(doc->lpszOutput),
|
debugstr_w(doc->lpszDocName), debugstr_w(doc->lpszOutput),
|
||||||
debugstr_w(doc->lpszDatatype));
|
debugstr_w(doc->lpszDatatype), doc->fwType);
|
||||||
|
|
||||||
if(!dc) return SP_ERROR;
|
if(!dc) return SP_ERROR;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue