Add Get/SetPolygonFillMode

svn path=/trunk/; revision=4358
This commit is contained in:
Mark Tempel 2003-03-20 03:02:38 +00:00
parent ba707122eb
commit f404855197

View file

@ -20,6 +20,14 @@ GetClipBox(HDC hDc, LPRECT Rect)
return(W32kGetClipBox(hDc, Rect)); return(W32kGetClipBox(hDc, Rect));
} }
int
STDCALL
GetPolyFillMode(
HDC a0
)
{
return W32kGetPolyFillMode(a0);
}
HDC HDC
STDCALL STDCALL
@ -207,3 +215,13 @@ LPtoDP(
{ {
return W32kLPtoDP(a0, a1, a2); return W32kLPtoDP(a0, a1, a2);
} }
int
STDCALL
SetPolyFillMode(
HDC a0,
int a1
)
{
return W32kSetPolyFillMode(a0, a1);
}