gdiplus: Add traces to unimplemented functions in graphics.c.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index a4f1158..67b0ff9 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -1201,6 +1201,8 @@
 {
     static int calls;
 
+    TRACE("(%p,%i,%p)\n", hemf, delete, metafile);
+
     if(!hemf || !metafile)
         return InvalidParameter;
 
@@ -3064,6 +3066,8 @@
 {
     static int calls;
 
+    TRACE("(%p,%u)\n", graphics, intention);
+
     if(!graphics)
         return InvalidParameter;
 
@@ -3161,14 +3165,14 @@
 
 GpStatus WINGDIPAPI GdipGetNearestColor(GpGraphics *graphics, ARGB* argb)
 {
+    FIXME("(%p, %p): stub\n", graphics, argb);
+
     if(!graphics || !argb)
         return InvalidParameter;
 
     if(graphics->busy)
         return ObjectBusy;
 
-    FIXME("(%p, %p): stub\n", graphics, argb);
-
     return NotImplemented;
 }
 
@@ -3455,12 +3459,12 @@
         GDIPCONST RectF* layoutRect, GDIPCONST GpStringFormat *stringFormat,
         INT regionCount, GpRegion** regions)
 {
-    if (!(graphics && string && font && layoutRect && stringFormat && regions))
-        return InvalidParameter;
-
     FIXME("stub: %p %s %d %p %p %p %d %p\n", graphics, debugstr_w(string),
             length, font, layoutRect, stringFormat, regionCount, regions);
 
+    if (!(graphics && string && font && layoutRect && stringFormat && regions))
+        return InvalidParameter;
+
     return NotImplemented;
 }
 
@@ -4013,6 +4017,8 @@
 {
     static int calls;
 
+    TRACE("(%p,%u)\n", metafile, limitDpi);
+
     if(!(calls++))
         FIXME("not implemented\n");