On Wed, Jul 09, 2008 at 03:33:47AM -0400, Adam Petaccia wrote:
dlls/gdiplus/gdiplus.spec | 2 +- dlls/gdiplus/region.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/region.c b/dlls/gdiplus/region.c index 3d95723..717119f 100644 --- a/dlls/gdiplus/region.c +++ b/dlls/gdiplus/region.c @@ -156,6 +156,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;
+}
Msdn lists this in the 'graphics' section of the gdiplus flat api, so I'd suggest it goes in graphics.c
Huw.