gdiplus: Stub GdipGetLineBlend.
This commit is contained in:
parent
3d37b0a7fa
commit
1de792290b
|
@ -1084,6 +1084,19 @@ GpStatus WINGDIPAPI GdipSetLineBlend(GpLineGradient *brush,
|
|||
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)
|
||||
{
|
||||
static int calls;
|
||||
|
|
|
@ -300,7 +300,7 @@
|
|||
@ stdcall GdipGetImageVerticalResolution(ptr ptr)
|
||||
@ stdcall GdipGetImageWidth(ptr ptr)
|
||||
@ stdcall GdipGetInterpolationMode(ptr ptr)
|
||||
@ stub GdipGetLineBlend
|
||||
@ stdcall GdipGetLineBlend(ptr ptr ptr long)
|
||||
@ stdcall GdipGetLineBlendCount(ptr ptr)
|
||||
@ stdcall GdipGetLineColors(ptr ptr)
|
||||
@ stdcall GdipGetLineGammaCorrection(ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue