gdiplus: Stub GdipFillRegion.

This commit is contained in:
Adam Petaccia 2008-07-09 03:33:47 -04:00 committed by Alexandre Julliard
parent be4a226a11
commit c89bd5b878
2 changed files with 12 additions and 1 deletions

View File

@ -230,7 +230,7 @@
@ stdcall GdipFillRectangleI(ptr ptr long long long long)
@ stdcall GdipFillRectangles(ptr ptr ptr long)
@ stdcall GdipFillRectanglesI(ptr ptr ptr long)
@ stub GdipFillRegion
@ stdcall GdipFillRegion(ptr ptr ptr)
@ stdcall GdipFindFirstImageItem(ptr ptr)
@ stub GdipFindNextImageItem
@ stub GdipFlattenPath

View File

@ -162,6 +162,17 @@ GpStatus WINGDIPAPI GdipDeleteRegion(GpRegion *region)
return NotImplemented;
}
GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
GpRegion* region)
{
if (!(graphics && brush && region))
return InvalidParameter;
FIXME("(%p, %p, %p): stub\n", graphics, brush, region);
return NotImplemented;
}
GpStatus WINGDIPAPI GdipGetRegionBounds(GpRegion *region, GpGraphics *graphics, GpRectF *rect)
{
FIXME("(%p, %p, %p): stub\n", region, graphics, rect);