diff --git a/reactos/dll/win32/gdi32/objects/region.c b/reactos/dll/win32/gdi32/objects/region.c index 4b3e5a70563..e4a3db0d096 100644 --- a/reactos/dll/win32/gdi32/objects/region.c +++ b/reactos/dll/win32/gdi32/objects/region.c @@ -21,3 +21,28 @@ GetClipRgn( else return 0; } + +HRGN +WINAPI +CreatePolygonRgn( const POINT* Point, int Count, int Mode) +{ + return CreatePolyPolygonRgn(Point, (const INT*)&Count, 1, Mode); +} + + +HRGN +WINAPI +CreatePolyPolygonRgn( const POINT* Point, + const INT* Count, + int inPolygons, + int Mode) +{ +/* return (HRGN) NtGdiPolyPolyDraw( (HDC) Mode, + (PPOINT) Point, + (PULONG) Count, + (ULONG) inPolygons, + GdiPolyPolyRgn ); +*/ +} + +