8db10016ec89b942e05cd6611ab71ddf650ce1d7
[reactos.git] / reactos / gdiplus / gdiplus / brush.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipCloneBrush(GpBrush *brush,
10 GpBrush **cloneBrush)
11 {
12 return NotImplemented;
13 }
14
15 /*
16 * @unimplemented
17 */
18 GpStatus WINGDIPAPI
19 GdipDeleteBrush(GpBrush *brush)
20 {
21 return NotImplemented;
22 }
23
24 /*
25 * @unimplemented
26 */
27 GpStatus WINGDIPAPI
28 GdipGetBrushType(GpBrush *brush,
29 GpBrushType *type)
30 {
31 return NotImplemented;
32 }
33
34 /*
35 * @unimplemented
36 */
37 GpStatus WINGDIPAPI
38 GdipCreateHatchBrush(GpHatchStyle hatchstyle,
39 ARGB forecol,
40 ARGB backcol,
41 GpHatch **brush)
42 {
43 return NotImplemented;
44 }
45
46 /*
47 * @unimplemented
48 */
49 GpStatus WINGDIPAPI
50 GdipGetHatchStyle(GpHatch *brush,
51 GpHatchStyle *hatchstyle)
52 {
53 return NotImplemented;
54 }
55
56 /*
57 * @unimplemented
58 */
59 GpStatus WINGDIPAPI
60 GdipGetHatchForegroundColor(GpHatch *brush,
61 ARGB* forecol)
62 {
63 return NotImplemented;
64 }
65
66 /*
67 * @unimplemented
68 */
69 GpStatus WINGDIPAPI
70 GdipGetHatchBackgroundColor(GpHatch *brush,
71 ARGB* backcol)
72 {
73 return NotImplemented;
74 }