Commit 942f3496 authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

gdiplus: Add a stub for GdipSetLinePresetBlend.

parent 0399cdaf
...@@ -675,3 +675,14 @@ GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus, ...@@ -675,3 +675,14 @@ GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus,
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient *brush,
GDIPCONST ARGB *blend, GDIPCONST REAL* positions, INT count)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
...@@ -539,7 +539,7 @@ ...@@ -539,7 +539,7 @@
@ stdcall GdipSetLineColors(ptr long long) @ stdcall GdipSetLineColors(ptr long long)
@ stdcall GdipSetLineGammaCorrection(ptr long) @ stdcall GdipSetLineGammaCorrection(ptr long)
@ stdcall GdipSetLineLinearBlend(ptr long long) @ stdcall GdipSetLineLinearBlend(ptr long long)
@ stub GdipSetLinePresetBlend @ stdcall GdipSetLinePresetBlend(ptr ptr ptr long)
@ stdcall GdipSetLineSigmaBlend(ptr long long) @ stdcall GdipSetLineSigmaBlend(ptr long long)
@ stub GdipSetLineTransform @ stub GdipSetLineTransform
@ stdcall GdipSetLineWrapMode(ptr long) @ stdcall GdipSetLineWrapMode(ptr long)
......
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