implement GetMetaRgn left todo fix it in win32k.sys

svn path=/trunk/; revision=28717
This commit is contained in:
Magnus Olsen 2007-08-31 17:46:06 +00:00
parent a86b4289ac
commit dfa9b6f56f

View file

@ -115,18 +115,14 @@ GetBoundsRect(
/*
* @unimplemented
* @implemented
*/
int
STDCALL
GetMetaRgn(
HDC a0,
HRGN a1
)
GetMetaRgn(HDC hdc,
HRGN hrgn)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
return NtGdiGetRandomRgn(hdc,hrgn,2);
}