mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 01:03:16 +00:00
Add Get/SetPolygonFillMode
svn path=/trunk/; revision=4358
This commit is contained in:
parent
ba707122eb
commit
f404855197
1 changed files with 18 additions and 0 deletions
|
@ -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);
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue