[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

@ -106,11 +106,7 @@ class Pen : public GdiplusBase
if (!customCap)
return SetStatus(InvalidParameter);
#if 1
return SetStatus(NotImplemented);
#else
return SetStatus(DllExports::GdipGetPenCustomEndCap(nativePen, &getNat(customCap)));
#endif
}
Status
@ -226,11 +222,7 @@ class Pen : public GdiplusBase
Status
MultiplyTransform(Matrix *matrix, MatrixOrder order = MatrixOrderPrepend)
{
#if 1
return SetStatus(NotImplemented);
#else
return SetStatus(DllExports::GdipMultiplyPenTransform(nativePen, getNat(matrix), order));
#endif
}
Status