Commit 8435e408 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

gdiplus: Return zero properties in stubbed GdipGetPropertyCount.

parent 45b4b420
......@@ -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)
......
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