Vincent Povirk : gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount.
Module: wine Branch: master Commit: 7d62e1f776000a44983ab1ed39c89943cabcb982 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7d62e1f776000a44983ab1ed39... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Thu Dec 24 15:52:02 2009 -0500 gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount. --- dlls/gdiplus/image.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index 9858f33..2716a34 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -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; }
participants (1)
-
Alexandre Julliard