From ea5140f3c04aaee5b665757b19e23e8fc5e50caa Mon Sep 17 00:00:00 2001 From: Mark Tempel Date: Thu, 20 Mar 2003 03:03:39 +0000 Subject: [PATCH] Moved implementation of Rectangle to here. Added Polygon svn path=/trunk/; revision=4360 --- reactos/lib/gdi32/objects/fillshap.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 reactos/lib/gdi32/objects/fillshap.c 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