wine-wine/include/gdiplusgpstubs.h

57 lines
1.6 KiB
C
Raw Normal View History

2007-06-08 20:44:28 +00: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 GpGraphics {};
class GpBrush {};
class GpSolidFill {};
class GpPath {};
class GpMatrix {};
class GpPathIterator {};
2007-06-08 20:44:28 +00:00
#else /* end of c++ declarations */
typedef struct GpGraphics GpGraphics;
typedef struct GpPen GpPen;
typedef struct GpBrush GpBrush;
typedef struct GpSolidFill GpSolidFill;
typedef struct GpPath GpPath;
typedef struct GpMatrix GpMatrix;
typedef struct GpPathIterator GpPathIterator;
2007-06-08 20:44:28 +00:00
#endif /* end of c declarations */
typedef Status GpStatus;
typedef Unit GpUnit;
typedef BrushType GpBrushType;
2007-06-20 02:31:28 +00:00
typedef PointF GpPointF;
typedef FillMode GpFillMode;
typedef PathData GpPathData;
2007-07-06 01:37:52 +00:00
typedef LineCap GpLineCap;
2007-07-12 01:08:10 +00:00
typedef RectF GpRectF;
2007-07-13 02:42:47 +00:00
typedef LineJoin GpLineJoin;
typedef DashCap GpDashCap;
2007-07-17 02:45:16 +00:00
typedef DashStyle GpDashStyle;
2007-06-08 20:44:28 +00:00
#endif