merge from win32k-gdi-dx r33674 Implement GdiAddGlsBounds

svn path=/trunk/; revision=33675
This commit is contained in:
Magnus Olsen 2008-05-24 19:02:23 +00:00
parent 9ea0a62432
commit ff1a74c0da
2 changed files with 9 additions and 14 deletions

View file

@ -226,3 +226,12 @@ GdiSetLastError(DWORD dwErrCode)
{
NtCurrentTeb ()->LastErrorValue = (ULONG) dwErrCode;
}
BOOL
STDCALL
GdiAddGlsBounds(HDC hdc,LPRECT prc)
{
//FIXME: Lookup what 0x8000 means
return NtGdiSetBoundsRect(hdc, prc, 0x8000 | DCB_ACCUMULATE ) ? TRUE : FALSE;
}

View file

@ -1084,20 +1084,6 @@ EndFormPage(HDC hdc)
return 0;
}
/*
* @unimplemented
*/
DWORD
STDCALL
GdiAddGlsBounds(HDC hdc,LPRECT prc)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
*/