diff --git a/reactos/lib/gdi32/objects/fillshap.c b/reactos/lib/gdi32/objects/fillshap.c new file mode 100644 index 00000000000..5b3d9bd2004 --- /dev/null +++ b/reactos/lib/gdi32/objects/fillshap.c @@ -0,0 +1,28 @@ +#ifdef UNICODE +#undef UNICODE +#endif + +#undef WIN32_LEAN_AND_MEAN +#include +#include +#include + +BOOL +STDCALL +Polygon(HDC hDC, + CONST POINT *lpPoints, + int nCount) +{ + return W32kPolygon(hDC, (CONST PPOINT)lpPoints, nCount); +} + +BOOL +STDCALL +Rectangle(HDC hDC, + int LeftRect, + int TopRect, + int RightRect, + int BottomRect) +{ + return W32kRectangle(hDC, LeftRect, TopRect, RightRect, BottomRect); +} \ No newline at end of file