convert all of the gdiplus stuff to lowercase
[reactos.git] / reactos / lib / gdiplus / gdiplus / clip.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipSetClipGraphics(GpGraphics *graphics,
10 GpGraphics *srcgraphics,
11 CombineMode combineMode)
12 {
13 return NotImplemented;
14 }
15
16 /*
17 * @unimplemented
18 */
19 GpStatus WINGDIPAPI
20 GdipSetClipRect(GpGraphics *graphics,
21 REAL x,
22 REAL y,
23 REAL width,
24 REAL height,
25 CombineMode combineMode)
26 {
27 return NotImplemented;
28 }
29
30 /*
31 * @unimplemented
32 */
33 GpStatus WINGDIPAPI
34 GdipSetClipRectI(GpGraphics *graphics,
35 INT x,
36 INT y,
37 INT width,
38 INT height,
39 CombineMode combineMode)
40 {
41 return NotImplemented;
42 }
43
44 /*
45 * @unimplemented
46 */
47 GpStatus WINGDIPAPI
48 GdipSetClipPath(GpGraphics *graphics,
49 GpPath *path,
50 CombineMode combineMode)
51 {
52 return NotImplemented;
53 }
54
55 /*
56 * @unimplemented
57 */
58 GpStatus WINGDIPAPI
59 GdipSetClipRegion(GpGraphics *graphics,
60 GpRegion *region,
61 CombineMode combineMode)
62 {
63 return NotImplemented;
64 }
65
66 /*
67 * @unimplemented
68 */
69 GpStatus WINGDIPAPI
70 GdipSetClipHrgn(GpGraphics *graphics,
71 HRGN hRgn,
72 CombineMode combineMode)
73 {
74 return NotImplemented;
75 }
76
77 /*
78 * @unimplemented
79 */
80 GpStatus WINGDIPAPI
81 GdipResetClip(GpGraphics *graphics)
82 {
83 return NotImplemented;
84 }
85
86 /*
87 * @unimplemented
88 */
89 GpStatus WINGDIPAPI
90 GdipTranslateClip(GpGraphics *graphics,
91 REAL dx,
92 REAL dy)
93 {
94 return NotImplemented;
95 }
96
97 /*
98 * @unimplemented
99 */
100 GpStatus WINGDIPAPI
101 GdipTranslateClipI(GpGraphics *graphics,
102 INT dx,
103 INT dy)
104 {
105 return NotImplemented;
106 }
107
108 /*
109 * @unimplemented
110 */
111 GpStatus WINGDIPAPI
112 GdipGetClip(GpGraphics *graphics,
113 GpRegion *region)
114 {
115 return NotImplemented;
116 }
117
118 /*
119 * @unimplemented
120 */
121 GpStatus WINGDIPAPI
122 GdipGetClipBounds(GpGraphics *graphics,
123 GpRectF *rect)
124 {
125 return NotImplemented;
126 }
127
128 /*
129 * @unimplemented
130 */
131 GpStatus WINGDIPAPI
132 GdipGetClipBoundsI(GpGraphics *graphics,
133 GpRect *rect)
134 {
135 return NotImplemented;
136 }
137
138 /*
139 * @unimplemented
140 */
141 GpStatus WINGDIPAPI
142 GdipIsClipEmpty(GpGraphics *graphics,
143 BOOL *result)
144 {
145 return NotImplemented;
146 }
147
148 /*
149 * @unimplemented
150 */
151 GpStatus WINGDIPAPI
152 GdipGetVisibleClipBounds(GpGraphics *graphics,
153 GpRectF *rect)
154 {
155 return NotImplemented;
156 }
157
158 /*
159 * @unimplemented
160 */
161 GpStatus WINGDIPAPI
162 GdipGetVisibleClipBoundsI(GpGraphics *graphics,
163 GpRect *rect)
164 {
165 return NotImplemented;
166 }
167
168 /*
169 * @unimplemented
170 */
171 GpStatus WINGDIPAPI
172 GdipIsVisibleClipEmpty(GpGraphics *graphics,
173 BOOL *result)
174 {
175 return NotImplemented;
176 }
177
178 /*
179 * @unimplemented
180 */
181 GpStatus WINGDIPAPI
182 GdipIsVisiblePoint(GpGraphics *graphics,
183 REAL x,
184 REAL y,
185 BOOL *result)
186 {
187 return NotImplemented;
188 }
189
190 /*
191 * @unimplemented
192 */
193 GpStatus WINGDIPAPI
194 GdipIsVisiblePointI(GpGraphics *graphics,
195 INT x,
196 INT y,
197 BOOL *result)
198 {
199 return NotImplemented;
200 }
201
202 /*
203 * @unimplemented
204 */
205 GpStatus WINGDIPAPI
206 GdipIsVisibleRect(GpGraphics *graphics,
207 REAL x,
208 REAL y,
209 REAL width,
210 REAL height,
211 BOOL *result)
212 {
213 return NotImplemented;
214 }
215
216 /*
217 * @unimplemented
218 */
219 GpStatus WINGDIPAPI
220 GdipIsVisibleRectI(GpGraphics *graphics,
221 INT x,
222 INT y,
223 INT width,
224 INT height,
225 BOOL *result)
226 {
227 return NotImplemented;
228 }