gdiplus: Add a FIXME.
This commit is contained in:
parent
9007123b23
commit
66f212e667
|
@ -1253,11 +1253,16 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
|
GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
|
||||||
{
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
TRACE("(%p, %p)\n", brush, count);
|
TRACE("(%p, %p)\n", brush, count);
|
||||||
|
|
||||||
if (!brush || !count)
|
if (!brush || !count)
|
||||||
return InvalidParameter;
|
return InvalidParameter;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue