gdiplus: Stub GdipGetPathGradientCenterColor.
This commit is contained in:
parent
86f4e00fba
commit
0178093576
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue