finished destubbing

svn path=/trunk/; revision=5249
This commit is contained in:
Royce Mitchell III 2003-07-24 17:53:13 +00:00
parent 91e25632da
commit 080c7a7f06

View file

@ -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 );
} }