dda7616ad85b97d259f77c48a19c0a0d8ae76543
[reactos.git] / reactos / gdi32 / objects / path.c
1 /* $Id: stubs.c 18897 2005-12-08 23:10:33Z cwittich $
2 *
3 * reactos/lib/gdi32/objects/path.c
4 *
5 * GDI32.DLL Path
6 *
7 * When you implement one of these functions,
8 * remove its stub from this file.
9 *
10 */
11
12 #include "precomp.h"
13
14 /*
15 * @implemented
16 */
17 BOOL
18 STDCALL
19 AbortPath(
20 HDC hdc
21 )
22 {
23 return NtGdiAbortPath( hdc );
24 }
25
26
27 /*
28 * @implemented
29 */
30 BOOL
31 STDCALL
32 BeginPath(
33 HDC hdc
34 )
35 {
36 return NtGdiBeginPath( hdc );
37 }
38
39 /*
40 * @implemented
41 */
42 BOOL
43 STDCALL
44 CloseFigure(
45 HDC hdc
46 )
47 {
48 return NtGdiCloseFigure ( hdc );
49 }
50
51
52 /*
53 * @implemented
54 */
55 BOOL
56 STDCALL
57 EndPath(
58 HDC hdc
59 )
60 {
61 return NtGdiEndPath( hdc );
62 }
63
64
65 /*
66 * @implemented
67 */
68 BOOL
69 STDCALL
70 FillPath(
71 HDC hdc
72 )
73 {
74 return NtGdiFillPath( hdc );
75 }
76
77
78 /*
79 * @implemented
80 */
81 BOOL
82 STDCALL
83 FlattenPath(
84 HDC hdc
85 )
86 {
87 return NtGdiFlattenPath ( hdc );
88 }
89
90
91 /*
92 * @implemented
93 */
94 int
95 STDCALL
96 GetPath(
97 HDC hdc,
98 LPPOINT a1,
99 LPBYTE a2,
100 int a3
101 )
102 {
103 return NtGdiGetPath ( hdc, a1, a2, a3 );
104 }
105
106
107 /*
108 * @implemented
109 */
110 HRGN
111 STDCALL
112 PathToRegion(
113 HDC hdc
114 )
115 {
116 return NtGdiPathToRegion ( hdc );
117 }
118
119 /*
120 * @implemented
121 */
122 BOOL
123 STDCALL
124 SetMiterLimit(
125 HDC hdc,
126 FLOAT a1,
127 PFLOAT a2
128 )
129 {
130 return NtGdiSetMiterLimit ( hdc, a1, (PDWORD)a2 );
131 }
132
133
134 /*
135 * @implemented
136 */
137 BOOL
138 STDCALL
139 StrokeAndFillPath(
140 HDC hdc
141 )
142 {
143 return NtGdiStrokeAndFillPath ( hdc );
144 }
145
146
147 /*
148 * @implemented
149 */
150 BOOL
151 STDCALL
152 StrokePath(
153 HDC hdc
154 )
155 {
156 return NtGdiStrokePath ( hdc );
157 }
158
159
160 /*
161 * @implemented
162 */
163 BOOL
164 STDCALL
165 WidenPath(
166 HDC hdc
167 )
168 {
169 return NtGdiWidenPath ( hdc );
170 }
171
172
173 /*
174 * @implemented
175 */
176 BOOL
177 STDCALL
178 GetMiterLimit(
179 HDC hdc,
180 PFLOAT a1
181 )
182 {
183 return NtGdiGetMiterLimit ( hdc, (PDWORD)a1 );
184 }
185
186 /*
187 * @implemented
188 */
189 BOOL
190 STDCALL
191 SelectClipPath(
192 HDC hdc,
193 int Mode
194 )
195 {
196 return NtGdiSelectClipPath ( hdc, Mode );
197 }