From f404855197d3fd338619e28ea4bfc5c4d4592d4c Mon Sep 17 00:00:00 2001 From: Mark Tempel Date: Thu, 20 Mar 2003 03:02:38 +0000 Subject: [PATCH] Add Get/SetPolygonFillMode svn path=/trunk/; revision=4358 --- reactos/lib/gdi32/objects/dc.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/reactos/lib/gdi32/objects/dc.c b/reactos/lib/gdi32/objects/dc.c index 62f1b6219bf..0eaebb5498a 100644 --- a/reactos/lib/gdi32/objects/dc.c +++ b/reactos/lib/gdi32/objects/dc.c @@ -20,6 +20,14 @@ GetClipBox(HDC hDc, LPRECT Rect) return(W32kGetClipBox(hDc, Rect)); } +int +STDCALL +GetPolyFillMode( + HDC a0 + ) +{ + return W32kGetPolyFillMode(a0); +} HDC STDCALL @@ -207,3 +215,13 @@ LPtoDP( { return W32kLPtoDP(a0, a1, a2); } + +int +STDCALL +SetPolyFillMode( + HDC a0, + int a1 + ) +{ + return W32kSetPolyFillMode(a0, a1); +} \ No newline at end of file