[SDK][INCLUDE] Improve gdiplusgraphics.h (#2222)

CORE-16585
This commit is contained in:
Katayama Hirofumi MZ 2020-01-01 19:10:47 +09:00 committed by GitHub
parent 91f3c8f81a
commit 265a890d7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 81 additions and 45 deletions

View file

@ -61,6 +61,7 @@ class Matrix;
class Metafile;
class Pen;
class Region;
class StringFormat;
// get native
GpBrush *&
@ -72,6 +73,9 @@ getNat(const CachedBitmap *cb);
GpCustomLineCap *&
getNat(const CustomLineCap *cap);
GpFont *&
getNat(const Font *font);
GpFontCollection *&
getNat(const FontCollection *fc);
@ -90,10 +94,16 @@ getNat(const ImageAttributes *ia);
GpMatrix *&
getNat(const Matrix *matrix);
GpMetafile *&
getNat(const Metafile *metafile);
GpPen *&
getNat(const Pen *pen);
GpRegion *&
getNat(const Region *region);
GpStringFormat *&
getNat(const StringFormat *sf);
#endif /* _GDIPLUSBASE_H */