gdiplus: Add stubs for GdipTransformPoints[I].
[wine] / include / gdiplusgpstubs.h
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef _GDIPLUSGPSTUBS_H
20 #define _GDIPLUSGPSTUBS_H
21
22 #ifdef __cplusplus
23
24 class GpGraphics {};
25 class GpBrush {};
26 class GpSolidFill : public GpBrush {};
27 class GpPath {};
28 class GpMatrix {};
29 class GpPathIterator {};
30 class GpCustomLineCap {};
31 class GpImage {};
32 class GpMetafile : public GpImage {};
33 class GpImageAttributes {};
34 class GpBitmap : public GpImage {};
35 class GpPathGradient : public GpBrush {};
36 class GpLineGradient : public GpBrush {};
37 class GpTexture : public GpBrush {};
38 class GpFont {};
39 class GpFontCollection {};
40 class GpFontFamily {};
41 class GpStringFormat {};
42 class GpRegion {};
43 class CGpEffect {};
44
45 #else /* end of c++ declarations */
46
47 typedef struct GpGraphics GpGraphics;
48 typedef struct GpPen GpPen;
49 typedef struct GpBrush GpBrush;
50 typedef struct GpSolidFill GpSolidFill;
51 typedef struct GpPath GpPath;
52 typedef struct GpMatrix GpMatrix;
53 typedef struct GpPathIterator GpPathIterator;
54 typedef struct GpCustomLineCap GpCustomLineCap;
55 typedef struct GpImage GpImage;
56 typedef struct GpMetafile GpMetafile;
57 typedef struct GpImageAttributes GpImageAttributes;
58 typedef struct GpBitmap GpBitmap;
59 typedef struct GpPathGradient GpPathGradient;
60 typedef struct GpLineGradient GpLineGradient;
61 typedef struct GpTexture GpTexture;
62 typedef struct GpFont GpFont;
63 typedef struct GpFontCollection GpFontCollection;
64 typedef struct GpFontFamily GpFontFamily;
65 typedef struct GpStringFormat GpStringFormat;
66 typedef struct GpRegion GpRegion;
67 typedef struct CGpEffect CGpEffect;
68
69 #endif /* end of c declarations */
70
71 typedef Status GpStatus;
72 typedef Unit GpUnit;
73 typedef BrushType GpBrushType;
74 typedef PointF GpPointF;
75 typedef FillMode GpFillMode;
76 typedef PathData GpPathData;
77 typedef LineCap GpLineCap;
78 typedef RectF GpRectF;
79 typedef Rect GpRect;
80 typedef LineJoin GpLineJoin;
81 typedef DashCap GpDashCap;
82 typedef DashStyle GpDashStyle;
83 typedef MatrixOrder GpMatrixOrder;
84 typedef Point GpPoint;
85 typedef WrapMode GpWrapMode;
86 typedef Color GpColor;
87 typedef FlushIntention GpFlushIntention;
88 typedef CoordinateSpace GpCoordinateSpace;
89
90 #endif