f61b406ad62897e7872fdb455afe14d82b34bf30
[reactos.git] / reactos / dll / win32 / gdiplus / gdiplus / fill.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipFillRectangle(GpGraphics *graphics,
10 GpBrush *brush,
11 REAL x,
12 REAL y,
13 REAL width,
14 REAL height)
15 {
16 return NotImplemented;
17 }
18
19 /*
20 * @unimplemented
21 */
22 GpStatus WINGDIPAPI
23 GdipFillRectangleI(GpGraphics *graphics,
24 GpBrush *brush,
25 INT x,
26 INT y,
27 INT width,
28 INT height)
29 {
30 return NotImplemented;
31 }
32
33 /*
34 * @unimplemented
35 */
36 GpStatus WINGDIPAPI
37 GdipFillRectangles(GpGraphics *graphics,
38 GpBrush *brush,
39 GDIPCONST GpRectF *rects,
40 INT count)
41 {
42 return NotImplemented;
43 }
44
45 /*
46 * @unimplemented
47 */
48 GpStatus WINGDIPAPI
49 GdipFillRectanglesI(GpGraphics *graphics,
50 GpBrush *brush,
51 GDIPCONST GpRect *rects,
52 INT count)
53 {
54 return NotImplemented;
55 }
56
57 /*
58 * @unimplemented
59 */
60 GpStatus WINGDIPAPI
61 GdipFillPolygon(GpGraphics *graphics,
62 GpBrush *brush,
63 GDIPCONST GpPointF *points,
64 INT count,
65 GpFillMode fillMode)
66 {
67 return NotImplemented;
68 }
69
70 /*
71 * @unimplemented
72 */
73 GpStatus WINGDIPAPI
74 GdipFillPolygonI(GpGraphics *graphics,
75 GpBrush *brush,
76 GDIPCONST GpPoint *points,
77 INT count,
78 GpFillMode fillMode)
79 {
80 return NotImplemented;
81 }
82
83 /*
84 * @unimplemented
85 */
86 GpStatus WINGDIPAPI
87 GdipFillPolygon2(GpGraphics *graphics,
88 GpBrush *brush,
89 GDIPCONST GpPointF *points,
90 INT count)
91 {
92 return NotImplemented;
93 }
94
95 /*
96 * @unimplemented
97 */
98 GpStatus WINGDIPAPI
99 GdipFillPolygon2I(GpGraphics *graphics,
100 GpBrush *brush,
101 GDIPCONST GpPoint *points,
102 INT count)
103 {
104 return NotImplemented;
105 }
106
107 /*
108 * @unimplemented
109 */
110 GpStatus WINGDIPAPI
111 GdipFillEllipse(GpGraphics *graphics,
112 GpBrush *brush,
113 REAL x,
114 REAL y,
115 REAL width,
116 REAL height)
117 {
118 return NotImplemented;
119 }
120
121 /*
122 * @unimplemented
123 */
124 GpStatus WINGDIPAPI
125 GdipFillEllipseI(GpGraphics *graphics,
126 GpBrush *brush,
127 INT x,
128 INT y,
129 INT width,
130 INT height)
131 {
132 return NotImplemented;
133 }
134
135 /*
136 * @unimplemented
137 */
138 GpStatus WINGDIPAPI
139 GdipFillPie(GpGraphics *graphics,
140 GpBrush *brush,
141 REAL x,
142 REAL y,
143 REAL width,
144 REAL height,
145 REAL startAngle,
146 REAL sweepAngle)
147 {
148 return NotImplemented;
149 }
150
151 /*
152 * @unimplemented
153 */
154 GpStatus WINGDIPAPI
155 GdipFillPieI(GpGraphics *graphics,
156 GpBrush *brush,
157 INT x,
158 INT y,
159 INT width,
160 INT height,
161 REAL startAngle,
162 REAL sweepAngle)
163 {
164 return NotImplemented;
165 }
166
167 /*
168 * @unimplemented
169 */
170 GpStatus WINGDIPAPI
171 GdipFillPath(GpGraphics *graphics,
172 GpBrush *brush,
173 GpPath *path)
174 {
175 return NotImplemented;
176 }
177
178 /*
179 * @unimplemented
180 */
181 GpStatus WINGDIPAPI
182 GdipFillClosedCurve(GpGraphics *graphics,
183 GpBrush *brush,
184 GDIPCONST GpPointF *points,
185 INT count)
186 {
187 return NotImplemented;
188 }
189
190 /*
191 * @unimplemented
192 */
193 GpStatus WINGDIPAPI
194 GdipFillClosedCurveI(GpGraphics *graphics,
195 GpBrush *brush,
196 GDIPCONST GpPoint *points,
197 INT count)
198 {
199 return NotImplemented;
200 }
201
202 /*
203 * @unimplemented
204 */
205 GpStatus WINGDIPAPI
206 GdipFillClosedCurve2I(GpGraphics *graphics,
207 GpBrush *brush,
208 GDIPCONST GpPoint *points,
209 INT count,
210 REAL tension,
211 GpFillMode fillMode)
212 {
213 return NotImplemented;
214 }
215
216 /*
217 * @unimplemented
218 */
219 GpStatus WINGDIPAPI
220 GdipFillRegion(GpGraphics *graphics,
221 GpBrush *brush,
222 GpRegion *region)
223 {
224 return NotImplemented;
225 }
226
227
228 /*
229 * @unimplemented
230 */
231 GpStatus WINGDIPAPI
232 GdipCreateSolidFill(ARGB color,
233 GpSolidFill **brush)
234 {
235 return NotImplemented;
236 }
237
238 /*
239 * @unimplemented
240 */
241 GpStatus WINGDIPAPI
242 GdipSetSolidFillColor(GpSolidFill *brush,
243 ARGB color)
244 {
245 return NotImplemented;
246 }
247
248 /*
249 * @unimplemented
250 */
251 GpStatus WINGDIPAPI
252 GdipGetSolidFillColor(GpSolidFill *brush,
253 ARGB *color)
254 {
255 return NotImplemented;
256 }