mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +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
|
||||
STDCALL
|
||||
CreatePolyPolygonRgn(
|
||||
CONST POINT *a0,
|
||||
CONST INT *a1,
|
||||
int a2,
|
||||
int a3
|
||||
CONST POINT *lppt,
|
||||
CONST INT *lpPolyCounts,
|
||||
int nCount,
|
||||
int fnPolyFillMode
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
return W32kCreatePolyPolygonRgn ( (CONST PPOINT)lppt,
|
||||
(CONST PINT)lpPolyCounts, nCount, fnPolyFillMode );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
HBRUSH
|
||||
STDCALL
|
||||
CreatePatternBrush(
|
||||
HBITMAP a0
|
||||
HBITMAP hbmp
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
return W32kCreatePatternBrush ( hbmp );
|
||||
}
|
||||
|
||||
|
||||
|
@ -105,21 +104,21 @@ CreateRectRgnIndirect(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
HRGN
|
||||
STDCALL
|
||||
CreateRoundRectRgn(
|
||||
int a0,
|
||||
int a1,
|
||||
int a2,
|
||||
int a3,
|
||||
int a4,
|
||||
int a5
|
||||
int nLeftRect,
|
||||
int nTopRect,
|
||||
int nRightRect,
|
||||
int nBottomRect,
|
||||
int nWidthEllipse,
|
||||
int nHeightEllipse
|
||||
)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
return W32kCreateRoundRectRgn (
|
||||
nLeftRect, nTopRect, nRightRect, nBottomRect, nWidthEllipse, nHeightEllipse );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue