From 6e326b1eca8c14700c89f59097738ff6e5b67a30 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Thu, 6 Oct 2011 20:45:26 +0200 Subject: gdiplus: return zero properties in stubbed GdipGetPropertyCount --- dlls/gdiplus/image.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c index ce14ef6..0e3848f 100644 --- a/dlls/gdiplus/image.c +++ b/dlls/gdiplus/image.c @@ -2399,7 +2399,8 @@ GpStatus WINGDIPAPI GdipGetPropertyCount(GpImage *image, UINT* num) if(!(calls++)) FIXME("not implemented\n"); - return InvalidParameter; + *num = 0; + return Ok; } GpStatus WINGDIPAPI GdipGetPropertyIdList(GpImage *image, UINT num, PROPID* list) -- 1.7.4.1