Commit e072d36a authored by Ken Sharp's avatar Ken Sharp Committed by Alexandre Julliard

gdiplus: Add GdipIsVisibleRectI stub.

parent 58f67036
......@@ -430,7 +430,7 @@
@ stdcall GdipIsVisiblePoint(ptr long long ptr)
@ stdcall GdipIsVisiblePointI(ptr long long ptr)
@ stub GdipIsVisibleRect
@ stub GdipIsVisibleRectI
@ stdcall GdipIsVisibleRectI(ptr long long long long ptr)
@ stub GdipIsVisibleRegionPoint
@ stdcall GdipIsVisibleRegionPointI(ptr long long ptr ptr)
@ stub GdipIsVisibleRegionRect
......
......@@ -4107,3 +4107,12 @@ GpStatus WINGDIPAPI GdipRecordMetafileI(HDC hdc, EmfType type, GDIPCONST GpRect
FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
return NotImplemented;
}
/*****************************************************************************
* GdipIsVisibleRectI [GDIPLUS.@]
*/
GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y, INT width, INT height, BOOL *result)
{
FIXME("(%p %d %d %d %d %p): stub\n", graphics, x, y, width, height, result);
return NotImplemented;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment