gdiplus: Stub GdipGetLineBlendCount.
This commit is contained in:
parent
51ad286d37
commit
3d37b0a7fa
|
@ -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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in New Issue