From ae8e02f33a8461aba93b4dd454ab598ab917d145 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Wed, 13 May 2009 14:30:00 -0500 Subject: [PATCH] gdiplus: add a trace to GdipMeasureString --- dlls/gdiplus/graphics.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 623af7f..5e5883f 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -2935,6 +2935,10 @@ GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics, nheight; SIZE size; + TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics, + debugstr_wn(string, length), length, font, debugstr_rectf(rect), format, + bounds, codepointsfitted, linesfilled); + if(!graphics || !string || !font || !rect) return InvalidParameter; -- 1.5.4.3