mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:03:00 +00:00
merge from win32k-gdi-dx r33674 Implement GdiAddGlsBounds
svn path=/trunk/; revision=33675
This commit is contained in:
parent
9ea0a62432
commit
ff1a74c0da
2 changed files with 9 additions and 14 deletions
|
@ -226,3 +226,12 @@ GdiSetLastError(DWORD dwErrCode)
|
||||||
{
|
{
|
||||||
NtCurrentTeb ()->LastErrorValue = (ULONG) 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1084,20 +1084,6 @@ EndFormPage(HDC hdc)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
DWORD
|
|
||||||
STDCALL
|
|
||||||
GdiAddGlsBounds(HDC hdc,LPRECT prc)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue