mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
[GDI32]
Implement GdiGetRgnAttr svn path=/trunk/; revision=65717
This commit is contained in:
@@ -398,6 +398,21 @@ GdiGetDcAttr(HDC hdc)
|
||||
return pdcattr;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
PRGN_ATTR
|
||||
GdiGetRgnAttr(HRGN hrgn)
|
||||
{
|
||||
PRGN_ATTR prgnattr;
|
||||
|
||||
/* Get the region attribute */
|
||||
if (!GdiGetHandleUserData(hrgn, GDILoObjType_LO_REGION_TYPE, (PVOID*)&prgnattr))
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return prgnattr;
|
||||
}
|
||||
|
||||
#ifdef _M_IX86
|
||||
FLOATL FASTCALL EFtoF(EFLOAT_S * efp);
|
||||
#define FOtoF(pfo) EFtoF((EFLOAT_S*)pfo)
|
||||
|
||||
Reference in New Issue
Block a user