From 55162681caa880b7a29ee1ab684e8cec296392f3 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 8 Oct 2009 12:54:01 -0500 Subject: [PATCH] include: Add gdiplus hatch brush functions to headers. --- include/gdiplusflat.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/gdiplusflat.h b/include/gdiplusflat.h index 11756c8a59c..bce1e2103bf 100644 --- a/include/gdiplusflat.h +++ b/include/gdiplusflat.h @@ -337,6 +337,11 @@ GpStatus WINGDIPAPI GdipSetPathMarker(GpPath*); GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*); GpStatus WINGDIPAPI GdipTransformPath(GpPath*,GpMatrix*); +/* HatchBrush */ +GpStatus WINGDIPAPI GdipCreateHatchBrush(HatchStyle,ARGB,ARGB,GpHatch**); +GpStatus WINGDIPAPI GdipGetHatchBackgroundColor(GpHatch*,ARGB*); +GpStatus WINGDIPAPI GdipGetHatchForegroundColor(GpHatch*,ARGB*); + /* Image */ GpStatus WINGDIPAPI GdipCloneImage(GpImage*, GpImage**); GpStatus WINGDIPAPI GdipCloneImageAttributes(GDIPCONST GpImageAttributes*,GpImageAttributes**);