Commit 55c77d46 authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdiplus: Implemented GdipGetImageType.

parent 460f01b3
......@@ -97,15 +97,13 @@ GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage *image, GUID *format)
GpStatus WINGDIPAPI GdipGetImageType(GpImage *image, ImageType *type)
{
static int calls;
if(!image || !type)
return InvalidParameter;
if(!(calls++))
FIXME("not implemented\n");
/* FIXME: get correct image type. */
*type = ImageTypeUnknown;
return NotImplemented;
return Ok;
}
GpStatus WINGDIPAPI GdipGetImageVerticalResolution(GpImage *image, REAL *res)
......
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