André Hentschel : gdiplus: Add a FIXME.

Alexandre Julliard julliard at winehq.org
Wed Apr 13 10:49:26 CDT 2011


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Apr 12 20:17:02 2011 +0200

gdiplus: Add a FIXME.

---

 dlls/gdiplus/brush.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c
index d6fb62d..d1af903 100644
--- a/dlls/gdiplus/brush.c
+++ b/dlls/gdiplus/brush.c
@@ -1253,11 +1253,16 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
 
 GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
 {
+    static int calls;
+
     TRACE("(%p, %p)\n", brush, count);
 
     if (!brush || !count)
        return InvalidParameter;
 
+    if(!(calls++))
+        FIXME("not implemented\n");
+
     return NotImplemented;
 }
 




More information about the wine-cvs mailing list