gdiplus: Implement GdipIsVisibleClipEmpty.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 67b0ff9..39ab18c 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -4359,3 +4359,26 @@
FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
return NotImplemented;
}
+
+/*****************************************************************************
+ * GdipIsVisibleClipEmpty [GDIPLUS.@]
+ */
+GpStatus WINGDIPAPI GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *res)
+{
+ GpStatus stat;
+ GpRegion* rgn;
+
+ TRACE("(%p, %p)\n", graphics, res);
+
+ if((stat = GdipCreateRegion(&rgn)) != Ok)
+ return stat;
+
+ if((stat = get_visible_clip_region(graphics, rgn)) != Ok)
+ goto cleanup;
+
+ stat = GdipIsEmptyRegion(rgn, graphics, res);
+
+cleanup:
+ GdipDeleteRegion(rgn);
+ return stat;
+}