Commit 7a8866b3 authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdiplus: Added GdipFindFirstImageItem stub.

parent e91d1245
......@@ -231,7 +231,7 @@
@ stub GdipFillRectangles
@ stub GdipFillRectanglesI
@ stub GdipFillRegion
@ stub GdipFindFirstImageItem
@ stdcall GdipFindFirstImageItem(ptr ptr)
@ stub GdipFindNextImageItem
@ stub GdipFlattenPath
@ stub GdipFlush
......
......@@ -31,6 +31,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
typedef void ImageItemData;
GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
{
if(!image)
......@@ -42,6 +44,14 @@ GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
return Ok;
}
GpStatus WINGDIPAPI GdipFindFirstImageItem(GpImage *image, ImageItemData* item)
{
if(!image || !item)
return InvalidParameter;
return NotImplemented;
}
GpStatus WINGDIPAPI GdipGetImageBounds(GpImage *image, GpRectF *srcRect,
GpUnit *srcUnit)
{
......
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