Commit 7d62e1f7 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount.

parent d41f68fd
...@@ -1725,13 +1725,13 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image, ...@@ -1725,13 +1725,13 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image, GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image,
UINT* count) UINT* count)
{ {
/* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
if(!image || !count) if(!image || !count)
return InvalidParameter; return InvalidParameter;
*count = 1; *count = 1;
FIXME("stub\n");
return Ok; return Ok;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment