- Sync gdiplus with Wine head
[reactos.git] / reactos / dll / win32 / gdiplus / pen.c
index f41185a..4a68a27 100644 (file)
@@ -385,6 +385,32 @@ GpStatus WINGDIPAPI GdipGetPenWidth(GpPen *pen, REAL *width)
     return Ok;
 }
 
+GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
+{
+    static int calls;
+
+    if(!pen)
+        return InvalidParameter;
+
+    if(!(calls++))
+        FIXME("(%p) stub\n", pen);
+
+    return NotImplemented;
+}
+
+GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order)
+{
+    static int calls;
+
+    if(!pen)
+        return InvalidParameter;
+
+    if(!(calls++))
+        FIXME("(%p, %.2f, %.2f, %d) stub\n", pen, sx, sy, order);
+
+    return NotImplemented;
+}
+
 GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush)
 {
     TRACE("(%p, %p)\n", pen, brush);
@@ -412,7 +438,7 @@ GpStatus WINGDIPAPI GdipSetPenColor(GpPen *pen, ARGB argb)
 GpStatus WINGDIPAPI GdipSetPenCompoundArray(GpPen *pen, GDIPCONST REAL *dash,
     INT count)
 {
-    FIXME("(%p, %p, %i): stub", pen, dash, count);
+    FIXME("(%p, %p, %i): stub\n", pen, dash, count);
 
     if (!pen || !dash || count < 2 || count%2 == 1)
         return InvalidParameter;