8ad67407f0cc3273356a3dd0af35d7f983df913a
[reactos.git] / reactos / dll / win32 / gdiplus / gdiplus / arrow.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipCreateAdjustableArrowCap(REAL height,
10 REAL width,
11 BOOL isFilled,
12 GpAdjustableArrowCap **cap)
13 {
14 return NotImplemented;
15 }
16
17 /*
18 * @unimplemented
19 */
20 GpStatus WINGDIPAPI
21 GdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap,
22 REAL height)
23 {
24 return NotImplemented;
25 }
26
27 /*
28 * @unimplemented
29 */
30 GpStatus WINGDIPAPI
31 GdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL* height)
32 {
33 return NotImplemented;
34 }
35
36 /*
37 * @unimplemented
38 */
39 GpStatus WINGDIPAPI
40 GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,
41 REAL width)
42 {
43 return NotImplemented;
44 }
45
46 /*
47 * @unimplemented
48 */
49 GpStatus WINGDIPAPI GdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,
50 REAL* width)
51 {
52 return NotImplemented;
53 }
54
55 /*
56 * @unimplemented
57 */
58 GpStatus WINGDIPAPI GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,
59 REAL middleInset)
60 {
61 return NotImplemented;
62 }
63
64 /*
65 * @unimplemented
66 */
67 GpStatus WINGDIPAPI GdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,
68 REAL* middleInset)
69 {
70 return NotImplemented;
71 }
72
73 /*
74 * @unimplemented
75 */
76 GpStatus WINGDIPAPI GdipSetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,
77 BOOL fillState)
78 {
79 return NotImplemented;
80 }
81
82 /*
83 * @unimplemented
84 */
85 GpStatus WINGDIPAPI
86 GdipGetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,
87 BOOL* fillState)
88 {
89 return NotImplemented;
90 }