mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
fix correct implemtions of GetRegionData in gdi32.dll
svn path=/trunk/; revision=28719
This commit is contained in:
@@ -427,7 +427,7 @@ GetPolyFillMode@4=NtGdiGetPolyFillMode@4
|
||||
GetROP2@4=NtGdiGetROP2@4
|
||||
GetRandomRgn@12=NtGdiGetRandomRgn@12
|
||||
GetRasterizerCaps@8
|
||||
GetRegionData@12=NtGdiGetRegionData@12
|
||||
GetRegionData@12
|
||||
GetRelAbs@8
|
||||
GetRgnBox@8=NtGdiGetRgnBox@8
|
||||
GetStockObject@4
|
||||
|
||||
@@ -2775,3 +2775,23 @@ GetFontData(HDC hdc,
|
||||
}
|
||||
return NtGdiGetFontData(hdc, dwTable, dwOffset, lpvBuffer, cbData);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetRegionData(HRGN hrgn,
|
||||
DWORD nCount,
|
||||
LPRGNDATA lpRgnData)
|
||||
{
|
||||
if (!lpRgnData)
|
||||
{
|
||||
nCount = 0;
|
||||
}
|
||||
|
||||
return NtGdiGetRegionData(hrgn,nCount,lpRgnData);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user