gdiplus: Add a trace to GdipMeasureString.
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 @@
         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;