sync with trunk (r46275)
[reactos.git] / dll / win32 / gdiplus / pen.c
index 4a68a27..930317c 100644 (file)
@@ -101,6 +101,8 @@ GpStatus WINGDIPAPI GdipClonePen(GpPen *pen, GpPen **clonepen)
     GdipCloneCustomLineCap(pen->customend, &(*clonepen)->customend);
     GdipCloneBrush(pen->brush, &(*clonepen)->brush);
 
+    TRACE("<-- %p\n", *clonepen);
+
     return Ok;
 }
 
@@ -154,6 +156,8 @@ GpStatus WINGDIPAPI GdipCreatePen2(GpBrush *brush, REAL width, GpUnit unit,
 
     *pen = gp_pen;
 
+    TRACE("<-- %p\n", *pen);
+
     return Ok;
 }
 
@@ -389,6 +393,8 @@ GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
 {
     static int calls;
 
+    TRACE("(%p)\n", pen);
+
     if(!pen)
         return InvalidParameter;
 
@@ -402,6 +408,8 @@ GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrix
 {
     static int calls;
 
+    TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, sx, sy, order);
+
     if(!pen)
         return InvalidParameter;