partly implement SetBoundsRect

svn path=/trunk/; revision=28773
This commit is contained in:
Magnus Olsen 2007-09-02 13:31:41 +00:00
parent 3ec9aeaa02
commit 8dd3f58473

View file

@ -203,19 +203,16 @@ SetMetaRgn(
}
/*
* @unimplemented
* @implemented
*/
UINT
STDCALL
SetBoundsRect(
HDC a0,
CONST RECT *a1,
UINT a2
)
SetBoundsRect(HDC hdc,
CONST RECT *prc,
UINT flags)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
/* FIXME add check for vaildate the flags */
return NtGdiSetBoundsRect(hdc, *prc, flags
}