mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:33:32 +00:00
parent
8ecbb44463
commit
8968b14235
7 changed files with 340 additions and 175 deletions
|
@ -655,6 +655,13 @@ class CachedBitmap : public GdiplusBase
|
|||
CachedBitmap(const CachedBitmap &);
|
||||
CachedBitmap &
|
||||
operator=(const CachedBitmap &);
|
||||
|
||||
// get native
|
||||
friend inline GpCachedBitmap *&
|
||||
getNat(const CachedBitmap *cb)
|
||||
{
|
||||
return const_cast<CachedBitmap *>(cb)->nativeCachedBitmap;
|
||||
}
|
||||
};
|
||||
|
||||
class FontCollection : public GdiplusBase
|
||||
|
@ -1367,6 +1374,13 @@ class Region : public GdiplusBase
|
|||
this->status = status;
|
||||
return status;
|
||||
}
|
||||
|
||||
// get native
|
||||
friend inline GpRegion *&
|
||||
getNat(const Region *region)
|
||||
{
|
||||
return const_cast<Region *>(region)->region;
|
||||
}
|
||||
};
|
||||
|
||||
class CustomLineCap : public GdiplusBase
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue