commit | 14802872b876581fc895f5310e120f83b88b58dd | [log] [tgz] |
---|---|---|
author | Evan Stade <estade@gmail.com> | Thu Jun 21 16:15:17 2007 -0700 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Jun 22 12:32:24 2007 +0200 |
tree | 75fd6fcecea289ad538ceb0f39db98acf6b45137 | |
parent | f6f04f6e0ede8f7add6db6874a2c294fc993e900 [diff] [blame] |
gdiplus: Implemented GdipCreatePath and GdipDeletePath.
diff --git a/include/gdiplusenums.h b/include/gdiplusenums.h index d3cc5d2..c6b5f15 100644 --- a/include/gdiplusenums.h +++ b/include/gdiplusenums.h
@@ -39,10 +39,17 @@ BrushTypeLinearGradient = 4 }; +enum FillMode +{ + FillModeAlternate = 0, + FillModeWinding = 1 +}; + #ifndef __cplusplus typedef enum Unit Unit; typedef enum BrushType BrushType; +typedef enum FillMode FillMode; #endif /* end of c typedefs */