[SDK][INCLUDE] Total refinement of Gdiplus headers (#2223)

Missing functions added. CORE-16585
This commit is contained in:
Katayama Hirofumi MZ 2020-01-01 20:28:42 +09:00 committed by GitHub
parent 265a890d7c
commit 1e83f8b5fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 56 additions and 80 deletions

View file

@ -496,6 +496,8 @@ extern "C"
GpStatus WINGDIPAPI
GdipGetDpiY(GpGraphics *, REAL *);
GpStatus WINGDIPAPI
GdipGetEncoderParameterListSize(GpImage *, GDIPCONST CLSID *, UINT *);
GpStatus WINGDIPAPI
GdipGetImageDecoders(UINT, UINT, ImageCodecInfo *);
GpStatus WINGDIPAPI
GdipGetImageDecodersSize(UINT *, UINT *);
@ -512,6 +514,8 @@ extern "C"
GpStatus WINGDIPAPI
GdipGetPixelOffsetMode(GpGraphics *, PixelOffsetMode *);
GpStatus WINGDIPAPI
GdipGetRenderingOrigin(GpGraphics *, INT *, INT *);
GpStatus WINGDIPAPI
GdipGetSmoothingMode(GpGraphics *, SmoothingMode *);
GpStatus WINGDIPAPI
GdipGetTextContrast(GpGraphics *, UINT *);
@ -532,6 +536,8 @@ extern "C"
GpStatus WINGDIPAPI
GdipIsClipEmpty(GpGraphics *, BOOL *);
GpStatus WINGDIPAPI
GdipIsVisibleClipEmpty(GpGraphics *, BOOL *);
GpStatus WINGDIPAPI
GdipIsVisiblePoint(GpGraphics *, REAL, REAL, BOOL *);
GpStatus WINGDIPAPI
GdipIsVisiblePointI(GpGraphics *, INT, INT, BOOL *);
@ -603,6 +609,8 @@ extern "C"
GpStatus WINGDIPAPI
GdipRotateWorldTransform(GpGraphics *, REAL, GpMatrixOrder);
GpStatus WINGDIPAPI
GdipSaveAdd(GpImage *, GDIPCONST EncoderParameters *);
GpStatus WINGDIPAPI
GdipSaveGraphics(GpGraphics *, GraphicsState *);
GpStatus WINGDIPAPI
GdipScaleWorldTransform(GpGraphics *, REAL, REAL, GpMatrixOrder);
@ -794,6 +802,8 @@ extern "C"
GdipWarpPath(GpPath *, GpMatrix *, GDIPCONST GpPointF *, INT, REAL, REAL, REAL, REAL, WarpMode, REAL);
GpStatus WINGDIPAPI
GdipWidenPath(GpPath *, GpPen *, GpMatrix *, REAL);
GpStatus WINGDIPAPI
GdipWindingModeOutline(GpPath *, GpMatrix *, REAL);
/* HatchBrush */
GpStatus WINGDIPAPI
@ -1071,6 +1081,15 @@ extern "C"
GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *, UINT);
GpStatus WINGDIPAPI
GdipRecordMetafile(HDC, EmfType, GDIPCONST GpRectF *, MetafileFrameUnit, GDIPCONST WCHAR *, GpMetafile **);
GpStatus WINGDIPAPI
GdipRecordMetafileStream(
IStream *,
HDC,
EmfType,
GDIPCONST GpRectF *,
MetafileFrameUnit,
GDIPCONST WCHAR *,
GpMetafile **);
/* MetafileHeader */
GpStatus WINGDIPAPI
@ -1125,10 +1144,24 @@ extern "C"
GpStatus WINGDIPAPI
GdipGetPathGradientRectI(GpPathGradient *, GpRect *);
GpStatus WINGDIPAPI
GdipGetPathGradientSurroundColorCount(GpPathGradient *, INT *);
GpStatus WINGDIPAPI
GdipGetPathGradientSurroundColorsWithCount(GpPathGradient *, ARGB *, INT *);
GpStatus WINGDIPAPI
GdipGetPathGradientTransform(GpPathGradient *, GpMatrix *);
GpStatus WINGDIPAPI
GdipGetPathGradientWrapMode(GpPathGradient *, GpWrapMode *);
GpStatus WINGDIPAPI
GdipMultiplyPathGradientTransform(GpPathGradient *, GDIPCONST GpMatrix *, GpMatrixOrder);
GpStatus WINGDIPAPI
GdipResetPathGradientTransform(GpPathGradient *);
GpStatus WINGDIPAPI
GdipRotatePathGradientTransform(GpPathGradient *, REAL, GpMatrixOrder);
GpStatus WINGDIPAPI
GdipScalePathGradientTransform(GpPathGradient *, REAL, REAL, GpMatrixOrder);
GpStatus WINGDIPAPI
GdipSetPathGradientLinearBlend(GpPathGradient *, REAL, REAL);
GpStatus WINGDIPAPI
GdipSetPathGradientBlend(GpPathGradient *, GDIPCONST REAL *, GDIPCONST REAL *, INT);
GpStatus WINGDIPAPI
GdipSetPathGradientCenterColor(GpPathGradient *, ARGB);
@ -1147,9 +1180,11 @@ extern "C"
GpStatus WINGDIPAPI
GdipSetPathGradientSurroundColorsWithCount(GpPathGradient *, GDIPCONST ARGB *, INT *);
GpStatus WINGDIPAPI
GdipSetPathGradientTransform(GpPathGradient *, GpMatrix *);
GpStatus WINGDIPAPI
GdipSetPathGradientWrapMode(GpPathGradient *, GpWrapMode);
GpStatus WINGDIPAPI
GdipGetPathGradientSurroundColorCount(GpPathGradient *, INT *);
GdipTranslatePathGradientTransform(GpPathGradient *, REAL, REAL, GpMatrixOrder);
/* PathIterator */
GpStatus WINGDIPAPI
@ -1405,6 +1440,8 @@ extern "C"
GpStatus WINGDIPAPI
GdipCreateTextureIAI(GpImage *, GDIPCONST GpImageAttributes *, INT, INT, INT, INT, GpTexture **);
GpStatus WINGDIPAPI
GdipGetTextureImage(GpTexture *, GpImage **);
GpStatus WINGDIPAPI
GdipGetTextureTransform(GpTexture *, GpMatrix *);
GpStatus WINGDIPAPI
GdipGetTextureWrapMode(GpTexture *, GpWrapMode *);