fusion: Implement CreateAssemblyCache.
[wine.git] / include / gdiplusgpstubs.h
blob364f21c4364345953a2a9abe391f1ace5f05447e
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
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.
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.
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
19 #ifndef _GDIPLUSGPSTUBS_H
20 #define _GDIPLUSGPSTUBS_H
22 #ifdef __cplusplus
24 class GpGraphics {};
25 class GpGraphics {};
26 class GpBrush {};
27 class GpSolidFill : public GpBrush {};
28 class GpPath {};
29 class GpMatrix {};
30 class GpPathIterator {};
31 class GpCustomLineCap {};
32 class GpImage {};
33 class GpMetafile : public GpImage {};
34 class GpImageAttributes {};
35 class GpBitmap : public GpImage {};
36 class GpPathGradient : public GpBrush {};
37 class GpLineGradient : public GpBrush {};
38 class GpTexture : public GpBrush {};
39 class GpFont {};
40 class GpStringFormat {};
42 #else /* end of c++ declarations */
44 typedef struct GpGraphics GpGraphics;
45 typedef struct GpPen GpPen;
46 typedef struct GpBrush GpBrush;
47 typedef struct GpSolidFill GpSolidFill;
48 typedef struct GpPath GpPath;
49 typedef struct GpMatrix GpMatrix;
50 typedef struct GpPathIterator GpPathIterator;
51 typedef struct GpCustomLineCap GpCustomLineCap;
52 typedef struct GpImage GpImage;
53 typedef struct GpMetafile GpMetafile;
54 typedef struct GpImageAttributes GpImageAttributes;
55 typedef struct GpBitmap GpBitmap;
56 typedef struct GpPathGradient GpPathGradient;
57 typedef struct GpLineGradient GpLineGradient;
58 typedef struct GpTexture GpTexture;
59 typedef struct GpFont GpFont;
60 typedef struct GpStringFormat GpStringFormat;
62 #endif /* end of c declarations */
64 typedef Status GpStatus;
65 typedef Unit GpUnit;
66 typedef BrushType GpBrushType;
67 typedef PointF GpPointF;
68 typedef FillMode GpFillMode;
69 typedef PathData GpPathData;
70 typedef LineCap GpLineCap;
71 typedef RectF GpRectF;
72 typedef Rect GpRect;
73 typedef LineJoin GpLineJoin;
74 typedef DashCap GpDashCap;
75 typedef DashStyle GpDashStyle;
76 typedef MatrixOrder GpMatrixOrder;
77 typedef Point GpPoint;
78 typedef WrapMode GpWrapMode;
80 #endif