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

gdiplus: Implement GdipGetLineBlendCount.

parent 1f4940ae
......@@ -1163,14 +1163,14 @@ GpStatus WINGDIPAPI GdipGetLineBlend(GpLineGradient *brush, REAL *factors,
GpStatus WINGDIPAPI GdipGetLineBlendCount(GpLineGradient *brush, INT *count)
{
static int calls;
TRACE("(%p, %p)\n", brush, count);
if(!(calls++))
FIXME("not implemented\n");
if (!brush || !count)
return InvalidParameter;
return NotImplemented;
*count = brush->blendcount;
return Ok;
}
GpStatus WINGDIPAPI GdipSetLineGammaCorrection(GpLineGradient *line,
......
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