commit | 0399cdaff0b8847b7fad13d49a7bdf42f7ac915b | [log] [tgz] |
---|---|---|
author | Lei Zhang <thestig@google.com> | Thu Apr 10 12:40:18 2008 -0700 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Apr 11 11:15:46 2008 +0200 |
tree | f3f27a9065cf44bd7988854df6d333d6480e2b8e | |
parent | 89b0a979c8855b09d1190df09836411d3c885b2e [diff] [blame] |
gdiplus: Add a stub for GdipSetLineLinearBlend.
diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c index 68178e9..182af75 100644 --- a/dlls/gdiplus/brush.c +++ b/dlls/gdiplus/brush.c
@@ -664,3 +664,14 @@ return NotImplemented; } + +GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus, + REAL scale) +{ + static int calls; + + if(!(calls++)) + FIXME("not implemented\n"); + + return NotImplemented; +}