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