gdiplus: Changed GdipGetImageType.

This commit is contained in:
Evan Stade 2007-07-31 19:15:08 -07:00 committed by Alexandre Julliard
parent 359a21d62b
commit 9da6cc907e

View file

@ -103,8 +103,7 @@ GpStatus WINGDIPAPI GdipGetImageType(GpImage *image, ImageType *type)
if(!image || !type)
return InvalidParameter;
/* FIXME: get correct image type. */
*type = ImageTypeUnknown;
*type = image->type;
return Ok;
}