Module: wine Branch: master Commit: e096b59ceb394096f31fc8c5f0a0fb9cc8b6c5d9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e096b59ceb394096f31fc8c5f0...
Author: Ken Sharp kennybobs@o2.co.uk Date: Mon Jun 22 21:59:59 2009 +0100
gdiplus: Add GdipIsVisibleRegionPointI stub.
---
dlls/gdiplus/gdiplus.spec | 2 +- dlls/gdiplus/graphics.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index 03c9629..b93d5f6 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -432,7 +432,7 @@ @ stub GdipIsVisibleRect @ stub GdipIsVisibleRectI @ stub GdipIsVisibleRegionPoint -@ stub GdipIsVisibleRegionPointI +@ stdcall GdipIsVisibleRegionPointI(ptr long long ptr ptr) @ stub GdipIsVisibleRegionRect @ stub GdipIsVisibleRegionRectI @ stdcall GdipLoadImageFromFile(wstr ptr) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index a9adac1..27cd6fb 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -3878,3 +3878,12 @@ GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16 FIXME("(%p %p %d %p %p %p %d %p): stub\n", graphics, text, length, font, brush, positions, flags, matrix); return NotImplemented; } + +/***************************************************************************** + * GdipIsVisibleRegionPointI [GDIPLUS.@] + */ +GpStatus WINGDIPAPI GdipIsVisibleRegionPointI(GpRegion *region, INT x, INT y, GpGraphics *graphics, BOOL *result) +{ + FIXME("(%p %d %d %p %p): stub\n", region, x, y, graphics, result); + return NotImplemented; +}