Update UniATA Driver to Version 0.3.9f. It works well in ROS.
[reactos.git] / reactos / dll / win32 / gdiplus / gdiplus / transform.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 /*
6 * @unimplemented
7 */
8 GpStatus WINGDIPAPI
9 GdipSetWorldTransform(GpGraphics *graphics,
10 GpMatrix *matrix)
11 {
12 return NotImplemented;
13 }
14
15 /*
16 * @unimplemented
17 */
18 GpStatus WINGDIPAPI
19 GdipResetWorldTransform(GpGraphics *graphics)
20 {
21 return NotImplemented;
22 }
23
24 /*
25 * @unimplemented
26 */
27 GpStatus WINGDIPAPI
28 GdipMultiplyWorldTransform(GpGraphics *graphics,
29 GDIPCONST GpMatrix *matrix,
30 GpMatrixOrder order)
31 {
32 return NotImplemented;
33 }
34
35 /*
36 * @unimplemented
37 */
38 GpStatus WINGDIPAPI
39 GdipTranslateWorldTransform(GpGraphics *graphics,
40 REAL dx,
41 REAL dy,
42 GpMatrixOrder order)
43 {
44 return NotImplemented;
45 }
46
47 /*
48 * @unimplemented
49 */
50 GpStatus WINGDIPAPI
51 GdipScaleWorldTransform(GpGraphics *graphics,
52 REAL sx,
53 REAL sy,
54 GpMatrixOrder order)
55 {
56 return NotImplemented;
57 }
58
59 /*
60 * @unimplemented
61 */
62 GpStatus WINGDIPAPI
63 GdipRotateWorldTransform(GpGraphics *graphics,
64 REAL angle,
65 GpMatrixOrder order)
66 {
67 return NotImplemented;
68 }
69
70 /*
71 * @unimplemented
72 */
73 GpStatus WINGDIPAPI
74 GdipGetWorldTransform(GpGraphics *graphics,
75 GpMatrix *matrix)
76 {
77 return NotImplemented;
78 }
79
80 /*
81 * @unimplemented
82 */
83 GpStatus WINGDIPAPI
84 GdipResetPageTransform(GpGraphics *graphics)
85 {
86 return NotImplemented;
87 }
88
89 /*
90 * @unimplemented
91 */
92 GpStatus WINGDIPAPI
93 GdipTransformPoints(GpGraphics *graphics,
94 GpCoordinateSpace destSpace,
95 GpCoordinateSpace srcSpace,
96 GpPointF *points,
97 INT count)
98 {
99 return NotImplemented;
100 }
101
102 /*
103 * @unimplemented
104 */
105 GpStatus WINGDIPAPI
106 GdipTransformPointsI(GpGraphics *graphics,
107 GpCoordinateSpace destSpace,
108 GpCoordinateSpace srcSpace,
109 GpPoint *points,
110 INT count)
111 {
112 return NotImplemented;
113 }