mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
gdiplus: Added GdipFindFirstImageItem stub.
This commit is contained in:
parent
e91d12454a
commit
7a8866b347
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user