gdiplus: Add a FIXME.

This commit is contained in:
André Hentschel 2011-04-12 20:17:02 +02:00 committed by Alexandre Julliard
parent 9007123b23
commit 66f212e667

View file

@ -1253,11 +1253,16 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
{
static int calls;
TRACE("(%p, %p)\n", brush, count);
if (!brush || !count)
return InvalidParameter;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}