Lei Zhang : gdiplus: Add a stub for GdipSetCustomLineCapStrokeJoin.

Alexandre Julliard julliard at winehq.org
Thu Apr 10 04:39:29 CDT 2008


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

Author: Lei Zhang <thestig at google.com>
Date:   Wed Apr  9 12:49:02 2008 -0700

gdiplus: Add a stub for GdipSetCustomLineCapStrokeJoin.

---

 dlls/gdiplus/customlinecap.c |   11 +++++++++++
 dlls/gdiplus/gdiplus.spec    |    2 +-
 2 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/dlls/gdiplus/customlinecap.c b/dlls/gdiplus/customlinecap.c
index 544f856..ce44243 100644
--- a/dlls/gdiplus/customlinecap.c
+++ b/dlls/gdiplus/customlinecap.c
@@ -162,3 +162,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom,
 
     return NotImplemented;
 }
+
+GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
+    GpLineJoin join)
+{
+    static int calls;
+
+    if(!(calls++))
+        FIXME("not implemented\n");
+
+    return NotImplemented;
+}
diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec
index 598c663..f191aeb 100644
--- a/dlls/gdiplus/gdiplus.spec
+++ b/dlls/gdiplus/gdiplus.spec
@@ -517,7 +517,7 @@
 @ stdcall GdipSetCustomLineCapBaseCap(ptr long)
 @ stdcall GdipSetCustomLineCapBaseInset(ptr long)
 @ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
-@ stub GdipSetCustomLineCapStrokeJoin
+@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
 @ stub GdipSetCustomLineCapWidthScale
 @ stub GdipSetEffectParameters
 @ stub GdipSetEmpty




More information about the wine-cvs mailing list