Commit 1de79229 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Stub GdipGetLineBlend.

parent 3d37b0a7
...@@ -1084,6 +1084,19 @@ GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush, ...@@ -1084,6 +1084,19 @@ GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush,
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipGetLineBlend(GpLineGradient *brush, REAL *factors,
REAL *positions, INT count)
{
static int calls;
TRACE("(%p, %p, %p, %i)\n", brush, factors, positions, count);
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count) GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count)
{ {
static int calls; static int calls;
......
...@@ -300,7 +300,7 @@ ...@@ -300,7 +300,7 @@
@ stdcall GdipGetImageVerticalResolution(ptr ptr) @ stdcall GdipGetImageVerticalResolution(ptr ptr)
@ stdcall GdipGetImageWidth(ptr ptr) @ stdcall GdipGetImageWidth(ptr ptr)
@ stdcall GdipGetInterpolationMode(ptr ptr) @ stdcall GdipGetInterpolationMode(ptr ptr)
@ stub GdipGetLineBlend @ stdcall GdipGetLineBlend(ptr ptr ptr long)
@ stdcall GdipGetLineBlendCount(ptr ptr) @ stdcall GdipGetLineBlendCount(ptr ptr)
@ stdcall GdipGetLineColors(ptr ptr) @ stdcall GdipGetLineColors(ptr ptr)
@ stdcall GdipGetLineGammaCorrection(ptr ptr) @ stdcall GdipGetLineGammaCorrection(ptr ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment