gdiplus: Added GdipFindFirstImageItem stub.
This commit is contained in:
parent
e91d12454a
commit
7a8866b347
|
@ -231,7 +231,7 @@
|
||||||
@ stub GdipFillRectangles
|
@ stub GdipFillRectangles
|
||||||
@ stub GdipFillRectanglesI
|
@ stub GdipFillRectanglesI
|
||||||
@ stub GdipFillRegion
|
@ stub GdipFillRegion
|
||||||
@ stub GdipFindFirstImageItem
|
@ stdcall GdipFindFirstImageItem(ptr ptr)
|
||||||
@ stub GdipFindNextImageItem
|
@ stub GdipFindNextImageItem
|
||||||
@ stub GdipFlattenPath
|
@ stub GdipFlattenPath
|
||||||
@ stub GdipFlush
|
@ stub GdipFlush
|
||||||
|
|
|
@ -31,6 +31,8 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
||||||
|
|
||||||
|
typedef void ImageItemData;
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
|
GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
|
||||||
{
|
{
|
||||||
if(!image)
|
if(!image)
|
||||||
|
@ -42,6 +44,14 @@ GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipFindFirstImageItem(GpImage *image, ImageItemData* item)
|
||||||
|
{
|
||||||
|
if(!image || !item)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipGetImageBounds(GpImage *image, GpRectF *srcRect,
|
GpStatus WINGDIPAPI GdipGetImageBounds(GpImage *image, GpRectF *srcRect,
|
||||||
GpUnit *srcUnit)
|
GpUnit *srcUnit)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue