gdiplus: Stub GdipGetPathGradientCenterColor.

This commit is contained in:
Vincent Povirk 2010-06-19 16:15:00 -05:00 committed by Alexandre Julliard
parent 86f4e00fba
commit 0178093576
2 changed files with 14 additions and 1 deletions

View File

@ -1064,6 +1064,19 @@ GpStatus WINGDIPAPI GdipGetPathGradientCenterPointI(GpPathGradient *grad,
return ret;
}
GpStatus WINGDIPAPI GdipGetPathGradientCenterColor(GpPathGradient *grad,
ARGB *colors)
{
static int calls;
TRACE("(%p,%p)\n", grad, colors);
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
GpStatus WINGDIPAPI GdipGetPathGradientFocusScales(GpPathGradient *grad,
REAL *x, REAL *y)
{

View File

@ -327,7 +327,7 @@
@ stdcall GdipGetPathFillMode(ptr ptr)
@ stdcall GdipGetPathGradientBlend(ptr ptr ptr long)
@ stdcall GdipGetPathGradientBlendCount(ptr ptr)
@ stub GdipGetPathGradientCenterColor
@ stdcall GdipGetPathGradientCenterColor(ptr ptr)
@ stdcall GdipGetPathGradientCenterPoint(ptr ptr)
@ stdcall GdipGetPathGradientCenterPointI(ptr ptr)
@ stdcall GdipGetPathGradientFocusScales(ptr ptr ptr)