From 689bf38a7ec1a447900946b7d7d226ec20b986a7 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 24 Dec 2009 15:52:02 -0500 Subject: [PATCH 2/5] 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; } -- 1.6.3.3