[PSDK/DDK]: Last couple of fixes to headers. Classpnp can compile (and link) now.
[reactos.git] / reactos / include / psdk / 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 GpHatch : public GpBrush {};
27 class GpSolidFill : public GpBrush {};
28 class GpPath {};
29 class GpMatrix {};
30 class GpPathIterator {};
31 class GpCustomLineCap {};
32 class GpAdjustableArrowCap : public GpCustomLineCap {};
33 class GpImage {};
34 class GpMetafile : public GpImage {};
35 class GpImageAttributes {};
36 class GpCachedBitmap {};
37 class GpBitmap : public GpImage {};
38 class GpPathGradient : public GpBrush {};
39 class GpLineGradient : public GpBrush {};
40 class GpTexture : public GpBrush {};
41 class GpFont {};
42 class GpFontCollection {};
43 class GpFontFamily {};
44 class GpStringFormat {};
45 class GpRegion {};
46 class CGpEffect {};
47
48 #else /* end of c++ declarations */
49
50 typedef struct GpGraphics GpGraphics;
51 typedef struct GpPen GpPen;
52 typedef struct GpBrush GpBrush;
53 typedef struct GpHatch GpHatch;
54 typedef struct GpSolidFill GpSolidFill;
55 typedef struct GpPath GpPath;
56 typedef struct GpMatrix GpMatrix;
57 typedef struct GpPathIterator GpPathIterator;
58 typedef struct GpCustomLineCap GpCustomLineCap;
59 typedef struct GpAdjustableArrowCap GpAdjustableArrowCap;
60 typedef struct GpImage GpImage;
61 typedef struct GpMetafile GpMetafile;
62 typedef struct GpImageAttributes GpImageAttributes;
63 typedef struct GpCachedBitmap GpCachedBitmap;
64 typedef struct GpBitmap GpBitmap;
65 typedef struct GpPathGradient GpPathGradient;
66 typedef struct GpLineGradient GpLineGradient;
67 typedef struct GpTexture GpTexture;
68 typedef struct GpFont GpFont;
69 typedef struct GpFontCollection GpFontCollection;
70 typedef struct GpFontFamily GpFontFamily;
71 typedef struct GpStringFormat GpStringFormat;
72 typedef struct GpRegion GpRegion;
73 typedef struct CGpEffect CGpEffect;
74
75 #endif /* end of c declarations */
76
77 typedef Status GpStatus;
78 typedef Unit GpUnit;
79 typedef BrushType GpBrushType;
80 typedef PointF GpPointF;
81 typedef FillMode GpFillMode;
82 typedef PathData GpPathData;
83 typedef LineCap GpLineCap;
84 typedef RectF GpRectF;
85 typedef Rect GpRect;
86 typedef LineJoin GpLineJoin;
87 typedef DashCap GpDashCap;
88 typedef DashStyle GpDashStyle;
89 typedef MatrixOrder GpMatrixOrder;
90 typedef Point GpPoint;
91 typedef WrapMode GpWrapMode;
92 typedef Color GpColor;
93 typedef FlushIntention GpFlushIntention;
94 typedef CoordinateSpace GpCoordinateSpace;
95 typedef PenType GpPenType;
96
97 #endif