reshuffling of dlls
[reactos.git] / reactos / gdiplus / gdiplus / pathiterator.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipCreatePathIter(GpPathIterator **iterator,
10 GpPath* path)
11 {
12 return NotImplemented;
13 }
14
15 /*
16 * @unimplemented
17 */
18 GpStatus WINGDIPAPI
19 GdipDeletePathIter(GpPathIterator *iterator)
20 {
21 return NotImplemented;
22 }
23
24 /*
25 * @unimplemented
26 */
27 GpStatus WINGDIPAPI
28 GdipPathIterNextSubpath(GpPathIterator* iterator,
29 INT *resultCount,
30 INT* startIndex,
31 INT* endIndex,
32 BOOL* isClosed)
33 {
34 return NotImplemented;
35 }
36
37 /*
38 * @unimplemented
39 */
40 GpStatus WINGDIPAPI
41 GdipPathIterNextSubpathPath(GpPathIterator* iterator,
42 INT* resultCount,
43 GpPath* path,
44 BOOL* isClosed)
45 {
46 return NotImplemented;
47 }
48
49 /*
50 * @unimplemented
51 */
52 GpStatus WINGDIPAPI
53 GdipPathIterNextPathType(GpPathIterator* iterator,
54 INT* resultCount,
55 BYTE* pathType,
56 INT* startIndex,
57 INT* endIndex)
58 {
59 return NotImplemented;
60 }
61
62 /*
63 * @unimplemented
64 */
65 GpStatus WINGDIPAPI
66 GdipPathIterNextMarker(GpPathIterator* iterator,
67 INT *resultCount,
68 INT* startIndex,
69 INT* endIndex)
70 {
71 return NotImplemented;
72 }
73
74 /*
75 * @unimplemented
76 */
77 GpStatus WINGDIPAPI
78 GdipPathIterNextMarkerPath(GpPathIterator* iterator,
79 INT* resultCount,
80 GpPath* path)
81 {
82 return NotImplemented;
83 }
84
85 /*
86 * @unimplemented
87 */
88 GpStatus WINGDIPAPI
89 GdipPathIterGetCount(GpPathIterator* iterator,
90 INT* count)
91 {
92 return NotImplemented;
93 }
94
95 /*
96 * @unimplemented
97 */
98 GpStatus WINGDIPAPI
99 GdipPathIterGetSubpathCount(GpPathIterator* iterator,
100 INT* count)
101 {
102 return NotImplemented;
103 }
104
105 /*
106 * @unimplemented
107 */
108 GpStatus WINGDIPAPI
109 GdipPathIterIsValid(GpPathIterator* iterator,
110 BOOL* valid)
111 {
112 return NotImplemented;
113 }
114
115 /*
116 * @unimplemented
117 */
118 GpStatus WINGDIPAPI
119 GdipPathIterHasCurve(GpPathIterator* iterator,
120 BOOL* hasCurve)
121 {
122 return NotImplemented;
123 }
124
125 /*
126 * @unimplemented
127 */
128 GpStatus WINGDIPAPI
129 GdipPathIterRewind(GpPathIterator* iterator)
130 {
131 return NotImplemented;
132 }
133
134 /*
135 * @unimplemented
136 */
137 GpStatus WINGDIPAPI
138 GdipPathIterEnumerate(GpPathIterator* iterator,
139 INT* resultCount,
140 GpPointF *points,
141 BYTE *types,
142 INT count)
143 {
144 return NotImplemented;
145 }
146
147 /*
148 * @unimplemented
149 */
150 GpStatus WINGDIPAPI
151 GdipPathIterCopyData(GpPathIterator* iterator,
152 INT* resultCount,
153 GpPointF* points,
154 BYTE* types,
155 INT startIndex,
156 INT endIndex)
157 {
158 return NotImplemented;
159 }