reshuffling of dlls
[reactos.git] / reactos / dll / win32 / gdiplus / gdiplus / linecap.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipCreateCustomLineCap(GpPath* fillPath,
10 GpPath* strokePath,
11 GpLineCap baseCap,
12 REAL baseInset,
13 GpCustomLineCap **customCap)
14 {
15 return NotImplemented;
16 }
17
18 /*
19 * @unimplemented
20 */
21 GpStatus WINGDIPAPI
22 GdipDeleteCustomLineCap(GpCustomLineCap* customCap)
23 {
24 return NotImplemented;
25 }
26
27 /*
28 * @unimplemented
29 */
30 GpStatus WINGDIPAPI
31 GdipCloneCustomLineCap(GpCustomLineCap* customCap,
32 GpCustomLineCap** clonedCap)
33 {
34 return NotImplemented;
35 }
36
37 /*
38 * @unimplemented
39 */
40 GpStatus WINGDIPAPI
41 GdipGetCustomLineCapType(GpCustomLineCap* customCap,
42 enum CustomLineCapType* capType)
43 {
44 return NotImplemented;
45 }
46
47 /*
48 * @unimplemented
49 */
50 GpStatus WINGDIPAPI
51 GdipSetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,
52 GpLineCap startCap,
53 GpLineCap endCap)
54 {
55 return NotImplemented;
56 }
57
58 /*
59 * @unimplemented
60 */
61 GpStatus WINGDIPAPI
62 GdipGetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,
63 GpLineCap* startCap,
64 GpLineCap* endCap)
65 {
66 return NotImplemented;
67 }
68
69 /*
70 * @unimplemented
71 */
72 GpStatus WINGDIPAPI
73 GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
74 GpLineJoin lineJoin)
75 {
76 return NotImplemented;
77 }
78
79 /*
80 * @unimplemented
81 */
82 GpStatus WINGDIPAPI
83 GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,
84 GpLineJoin* lineJoin)
85 {
86 return NotImplemented;
87 }
88
89 /*
90 * @unimplemented
91 */
92 GpStatus WINGDIPAPI
93 GdipSetCustomLineCapBaseCap(GpCustomLineCap* customCap,
94 GpLineCap baseCap)
95 {
96 return NotImplemented;
97 }
98
99 /*
100 * @unimplemented
101 */
102 GpStatus WINGDIPAPI
103 GdipGetCustomLineCapBaseCap(GpCustomLineCap* customCap,
104 GpLineCap* baseCap)
105 {
106 return NotImplemented;
107 }
108
109 /*
110 * @unimplemented
111 */
112 GpStatus WINGDIPAPI
113 GdipSetCustomLineCapBaseInset(GpCustomLineCap* customCap,
114 REAL inset)
115 {
116 return NotImplemented;
117 }
118
119 /*
120 * @unimplemented
121 */
122 GpStatus WINGDIPAPI
123 GdipGetCustomLineCapBaseInset(GpCustomLineCap* customCap,
124 REAL* inset)
125 {
126 return NotImplemented;
127 }
128
129 /*
130 * @unimplemented
131 */
132 GpStatus WINGDIPAPI
133 GdipSetCustomLineCapWidthScale(GpCustomLineCap* customCap,
134 REAL widthScale)
135 {
136 return NotImplemented;
137 }
138
139 /*
140 * @unimplemented
141 */
142 GpStatus WINGDIPAPI
143 GdipGetCustomLineCapWidthScale(GpCustomLineCap* customCap,
144 REAL* widthScale)
145 {
146 return NotImplemented;
147 }