Vincent Povirk : gdiplus: Stub GdipWidenPath.

Alexandre Julliard julliard at winehq.org
Thu May 14 11:07:43 CDT 2009


Module: wine
Branch: master
Commit: 8d5c833d25516d78d25210794e6a78c24c1bcd04
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8d5c833d25516d78d25210794e6a78c24c1bcd04

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Fri May  8 11:31:09 2009 -0500

gdiplus: Stub GdipWidenPath.

---

 dlls/gdiplus/gdiplus.spec   |    2 +-
 dlls/gdiplus/graphicspath.c |    8 ++++++++
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec
index 76c7328..8968528 100644
--- a/dlls/gdiplus/gdiplus.spec
+++ b/dlls/gdiplus/gdiplus.spec
@@ -622,7 +622,7 @@
 @ stdcall GdipVectorTransformMatrixPoints(ptr ptr long)
 @ stdcall GdipVectorTransformMatrixPointsI(ptr ptr long)
 @ stub GdipWarpPath
-@ stub GdipWidenPath
+@ stdcall GdipWidenPath(ptr ptr ptr long)
 @ stub GdipWindingModeOutline
 @ stdcall GdiplusNotificationHook(ptr)
 @ stdcall GdiplusNotificationUnhook(ptr)
diff --git a/dlls/gdiplus/graphicspath.c b/dlls/gdiplus/graphicspath.c
index ca33082..87b27fd 100644
--- a/dlls/gdiplus/graphicspath.c
+++ b/dlls/gdiplus/graphicspath.c
@@ -1465,6 +1465,14 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
                                      path->pathdata.Count);
 }
 
+GpStatus WINGDIPAPI GdipWidenPath(GpPath *path, GpPen *pen, GpMatrix *matrix,
+    REAL flatness)
+{
+    FIXME("(%p,%p,%p,%0.2f)\n", path, pen, matrix, flatness);
+
+    return NotImplemented;
+}
+
 GpStatus WINGDIPAPI GdipAddPathRectangle(GpPath *path, REAL x, REAL y,
     REAL width, REAL height)
 {




More information about the wine-cvs mailing list