Lei Zhang : gdiplus: Add a stub for GdipGetCustomLineCapBaseInset.

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


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

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

gdiplus: Add a stub for GdipGetCustomLineCapBaseInset.

---

 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 75dcd99..31a3b6b 100644
--- a/dlls/gdiplus/customlinecap.c
+++ b/dlls/gdiplus/customlinecap.c
@@ -140,3 +140,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseCap(GpCustomLineCap* custom,
 
     return NotImplemented;
 }
+
+GpStatus WINGDIPAPI GdipGetCustomLineCapBaseInset(GpCustomLineCap* custom,
+    REAL* inset)
+{
+    static int calls;
+
+    if(!(calls++))
+        FIXME("not implemented\n");
+
+    return NotImplemented;
+}
diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec
index bb6dfee..d31c727 100644
--- a/dlls/gdiplus/gdiplus.spec
+++ b/dlls/gdiplus/gdiplus.spec
@@ -250,7 +250,7 @@
 @ stdcall GdipGetCompositingMode(ptr ptr)
 @ stdcall GdipGetCompositingQuality(ptr ptr)
 @ stub GdipGetCustomLineCapBaseCap
-@ stub GdipGetCustomLineCapBaseInset
+@ stdcall GdipGetCustomLineCapBaseInset(ptr ptr)
 @ stub GdipGetCustomLineCapStrokeCaps
 @ stub GdipGetCustomLineCapStrokeJoin
 @ stub GdipGetCustomLineCapType




More information about the wine-cvs mailing list