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:
Dmitry Timoshkov 2018-12-07 15:16:21 +03:00 committed by Alexandre Julliard
parent 9ad2d036aa
commit 7933f7beef
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ INT WINAPI StartDocW(HDC hdc, const DOCINFOW* doc)
INT ret;
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->lpszDatatype));
debugstr_w(doc->lpszDatatype), doc->fwType);
if(!dc) return SP_ERROR;