gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount.

This commit is contained in:
Vincent Povirk 2009-12-24 15:52:02 -05:00 committed by Alexandre Julliard
parent d41f68fdb8
commit 7d62e1f776
1 changed files with 2 additions and 2 deletions

View File

@ -1725,13 +1725,13 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image,
UINT* count)
{
/* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
if(!image || !count)
return InvalidParameter;
*count = 1;
FIXME("stub\n");
return Ok;
}