gdiplus: Stub GdipGetLineBlend.

This commit is contained in:
Vincent Povirk 2009-04-28 17:28:22 -05:00 committed by Alexandre Julliard
parent 3d37b0a7fa
commit 1de792290b
2 changed files with 14 additions and 1 deletions

View File

@ -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;

View File

@ -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)