mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
finished destubbing
svn path=/trunk/; revision=5249
This commit is contained in:
parent
91e25632da
commit
080c7a7f06
1 changed files with 19 additions and 20 deletions
|
@ -45,33 +45,32 @@ GetClipRgn(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HRGN
|
HRGN
|
||||||
STDCALL
|
STDCALL
|
||||||
CreatePolyPolygonRgn(
|
CreatePolyPolygonRgn(
|
||||||
CONST POINT *a0,
|
CONST POINT *lppt,
|
||||||
CONST INT *a1,
|
CONST INT *lpPolyCounts,
|
||||||
int a2,
|
int nCount,
|
||||||
int a3
|
int fnPolyFillMode
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
return W32kCreatePolyPolygonRgn ( (CONST PPOINT)lppt,
|
||||||
return 0;
|
(CONST PINT)lpPolyCounts, nCount, fnPolyFillMode );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HBRUSH
|
HBRUSH
|
||||||
STDCALL
|
STDCALL
|
||||||
CreatePatternBrush(
|
CreatePatternBrush(
|
||||||
HBITMAP a0
|
HBITMAP hbmp
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
return W32kCreatePatternBrush ( hbmp );
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -105,21 +104,21 @@ CreateRectRgnIndirect(
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HRGN
|
HRGN
|
||||||
STDCALL
|
STDCALL
|
||||||
CreateRoundRectRgn(
|
CreateRoundRectRgn(
|
||||||
int a0,
|
int nLeftRect,
|
||||||
int a1,
|
int nTopRect,
|
||||||
int a2,
|
int nRightRect,
|
||||||
int a3,
|
int nBottomRect,
|
||||||
int a4,
|
int nWidthEllipse,
|
||||||
int a5
|
int nHeightEllipse
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
return W32kCreateRoundRectRgn (
|
||||||
return 0;
|
nLeftRect, nTopRect, nRightRect, nBottomRect, nWidthEllipse, nHeightEllipse );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue