Commit 3d37b0a7 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Stub GdipGetLineBlendCount.

parent 51ad286d
...@@ -1084,6 +1084,18 @@ GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush, ...@@ -1084,6 +1084,18 @@ GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush,
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count)
{
static int calls;
TRACE("(%p, %p)\n", brush, count);
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line, GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line,
BOOL usegamma) BOOL usegamma)
{ {
......
...@@ -301,7 +301,7 @@ ...@@ -301,7 +301,7 @@
@ stdcall GdipGetImageWidth(ptr ptr) @ stdcall GdipGetImageWidth(ptr ptr)
@ stdcall GdipGetInterpolationMode(ptr ptr) @ stdcall GdipGetInterpolationMode(ptr ptr)
@ stub GdipGetLineBlend @ stub GdipGetLineBlend
@ stub GdipGetLineBlendCount @ stdcall GdipGetLineBlendCount(ptr ptr)
@ stdcall GdipGetLineColors(ptr ptr) @ stdcall GdipGetLineColors(ptr ptr)
@ stdcall GdipGetLineGammaCorrection(ptr ptr) @ stdcall GdipGetLineGammaCorrection(ptr ptr)
@ stub GdipGetLinePresetBlend @ stub GdipGetLinePresetBlend
......
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