2007-06-08 22:44:28 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Google (Evan Stade)
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GDIPLUSGPSTUBS_H
|
|
|
|
#define _GDIPLUSGPSTUBS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
class GpGraphics {};
|
|
|
|
class GpBrush {};
|
2007-08-02 02:56:02 +02:00
|
|
|
class GpSolidFill : public GpBrush {};
|
2007-06-22 01:15:17 +02:00
|
|
|
class GpPath {};
|
2007-07-12 03:07:48 +02:00
|
|
|
class GpMatrix {};
|
2007-07-17 04:45:02 +02:00
|
|
|
class GpPathIterator {};
|
2007-07-20 03:22:34 +02:00
|
|
|
class GpCustomLineCap {};
|
2007-07-25 02:19:05 +02:00
|
|
|
class GpImage {};
|
|
|
|
class GpMetafile : public GpImage {};
|
2007-07-31 04:09:41 +02:00
|
|
|
class GpImageAttributes {};
|
2007-08-01 04:15:52 +02:00
|
|
|
class GpBitmap : public GpImage {};
|
2007-08-02 02:56:02 +02:00
|
|
|
class GpPathGradient : public GpBrush {};
|
2007-08-08 03:42:29 +02:00
|
|
|
class GpLineGradient : public GpBrush {};
|
2007-08-10 03:25:14 +02:00
|
|
|
class GpTexture : public GpBrush {};
|
2007-08-14 03:34:51 +02:00
|
|
|
class GpFont {};
|
2008-06-21 19:02:47 +02:00
|
|
|
class GpFontCollection {};
|
|
|
|
class GpFontFamily {};
|
2007-08-15 03:58:39 +02:00
|
|
|
class GpStringFormat {};
|
2008-04-09 21:35:29 +02:00
|
|
|
class GpRegion {};
|
2008-04-09 22:00:16 +02:00
|
|
|
class CGpEffect {};
|
2007-06-08 22:44:28 +02:00
|
|
|
|
|
|
|
#else /* end of c++ declarations */
|
|
|
|
|
|
|
|
typedef struct GpGraphics GpGraphics;
|
|
|
|
typedef struct GpPen GpPen;
|
|
|
|
typedef struct GpBrush GpBrush;
|
|
|
|
typedef struct GpSolidFill GpSolidFill;
|
2007-06-22 01:15:17 +02:00
|
|
|
typedef struct GpPath GpPath;
|
2007-07-12 03:07:48 +02:00
|
|
|
typedef struct GpMatrix GpMatrix;
|
2007-07-17 04:45:02 +02:00
|
|
|
typedef struct GpPathIterator GpPathIterator;
|
2007-07-20 03:22:34 +02:00
|
|
|
typedef struct GpCustomLineCap GpCustomLineCap;
|
2007-07-25 02:19:05 +02:00
|
|
|
typedef struct GpImage GpImage;
|
|
|
|
typedef struct GpMetafile GpMetafile;
|
2007-07-31 04:09:41 +02:00
|
|
|
typedef struct GpImageAttributes GpImageAttributes;
|
2007-08-01 04:15:52 +02:00
|
|
|
typedef struct GpBitmap GpBitmap;
|
2007-08-02 02:56:02 +02:00
|
|
|
typedef struct GpPathGradient GpPathGradient;
|
2007-08-08 03:42:29 +02:00
|
|
|
typedef struct GpLineGradient GpLineGradient;
|
2007-08-10 03:25:14 +02:00
|
|
|
typedef struct GpTexture GpTexture;
|
2007-08-14 03:34:51 +02:00
|
|
|
typedef struct GpFont GpFont;
|
2008-06-21 19:02:47 +02:00
|
|
|
typedef struct GpFontCollection GpFontCollection;
|
|
|
|
typedef struct GpFontFamily GpFontFamily;
|
2007-08-15 03:58:39 +02:00
|
|
|
typedef struct GpStringFormat GpStringFormat;
|
2008-04-09 21:35:29 +02:00
|
|
|
typedef struct GpRegion GpRegion;
|
2008-04-09 22:00:16 +02:00
|
|
|
typedef struct CGpEffect CGpEffect;
|
2007-06-08 22:44:28 +02:00
|
|
|
|
|
|
|
#endif /* end of c declarations */
|
|
|
|
|
|
|
|
typedef Status GpStatus;
|
|
|
|
typedef Unit GpUnit;
|
|
|
|
typedef BrushType GpBrushType;
|
2007-06-20 04:31:28 +02:00
|
|
|
typedef PointF GpPointF;
|
2007-06-22 01:15:17 +02:00
|
|
|
typedef FillMode GpFillMode;
|
|
|
|
typedef PathData GpPathData;
|
2007-07-06 03:37:52 +02:00
|
|
|
typedef LineCap GpLineCap;
|
2007-07-12 03:08:10 +02:00
|
|
|
typedef RectF GpRectF;
|
2007-08-29 21:42:01 +02:00
|
|
|
typedef Rect GpRect;
|
2007-07-13 04:42:47 +02:00
|
|
|
typedef LineJoin GpLineJoin;
|
2007-07-17 04:44:50 +02:00
|
|
|
typedef DashCap GpDashCap;
|
2007-07-17 04:45:16 +02:00
|
|
|
typedef DashStyle GpDashStyle;
|
2007-07-18 04:31:15 +02:00
|
|
|
typedef MatrixOrder GpMatrixOrder;
|
2007-07-24 05:24:35 +02:00
|
|
|
typedef Point GpPoint;
|
2007-08-02 02:56:10 +02:00
|
|
|
typedef WrapMode GpWrapMode;
|
2008-04-10 21:40:13 +02:00
|
|
|
typedef Color GpColor;
|
2008-06-18 09:33:10 +02:00
|
|
|
typedef FlushIntention GpFlushIntention;
|
2008-07-10 16:26:58 +02:00
|
|
|
typedef CoordinateSpace GpCoordinateSpace;
|
2007-06-08 22:44:28 +02:00
|
|
|
|
|
|
|
#endif
|