mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
partly implement SetBoundsRect
svn path=/trunk/; revision=28773
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user