https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7a00f240c6cfe6d4dc53f0...
commit 7a00f240c6cfe6d4dc53f04fa1345bbb76364e51 Author: Amine Khaldi amine.khaldi@reactos.org AuthorDate: Fri Jan 19 00:15:20 2018 +0100 Commit: Amine Khaldi amine.khaldi@reactos.org CommitDate: Fri Jan 19 00:15:20 2018 +0100
[PSDK] Update gdiplusflat.h and gdiplusgpstubs.h. CORE-14225 --- sdk/include/psdk/gdiplusflat.h | 4 ++-- sdk/include/psdk/gdiplusgpstubs.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/sdk/include/psdk/gdiplusflat.h b/sdk/include/psdk/gdiplusflat.h index 64a3a62e32..54d3ea94b5 100644 --- a/sdk/include/psdk/gdiplusflat.h +++ b/sdk/include/psdk/gdiplusflat.h @@ -388,10 +388,10 @@ GpStatus WINGDIPAPI GdipWarpPath(GpPath*,GpMatrix*,GDIPCONST GpPointF*,INT,REAL, GpStatus WINGDIPAPI GdipWidenPath(GpPath*,GpPen*,GpMatrix*,REAL);
/* HatchBrush */ -GpStatus WINGDIPAPI GdipCreateHatchBrush(HatchStyle,ARGB,ARGB,GpHatch**); +GpStatus WINGDIPAPI GdipCreateHatchBrush(GpHatchStyle,ARGB,ARGB,GpHatch**); GpStatus WINGDIPAPI GdipGetHatchBackgroundColor(GpHatch*,ARGB*); GpStatus WINGDIPAPI GdipGetHatchForegroundColor(GpHatch*,ARGB*); -GpStatus WINGDIPAPI GdipGetHatchStyle(GpHatch*,HatchStyle*); +GpStatus WINGDIPAPI GdipGetHatchStyle(GpHatch*,GpHatchStyle*);
/* Image */ GpStatus WINGDIPAPI GdipCloneImage(GpImage*, GpImage**); diff --git a/sdk/include/psdk/gdiplusgpstubs.h b/sdk/include/psdk/gdiplusgpstubs.h index 5a65cd83e9..67b6ac1e34 100644 --- a/sdk/include/psdk/gdiplusgpstubs.h +++ b/sdk/include/psdk/gdiplusgpstubs.h @@ -95,5 +95,6 @@ typedef FlushIntention GpFlushIntention; typedef CoordinateSpace GpCoordinateSpace; typedef PenAlignment GpPenAlignment; typedef PenType GpPenType; +typedef HatchStyle GpHatchStyle;
#endif