mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
Add Get/SetPolygonFillMode
svn path=/trunk/; revision=4358
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user