Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
b6b97b1e
Commit
b6b97b1e
authored
Aug 29, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add some missing or related prototypes and types.
Fix the GdipDrawRectangles() prototype.
parent
643d1e88
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
80 additions
and
19 deletions
+80
-19
graphics.c
dlls/gdiplus/graphics.c
+1
-1
image.c
dlls/gdiplus/image.c
+0
-2
gdiplusflat.h
include/gdiplusflat.h
+53
-14
gdiplusgpstubs.h
include/gdiplusgpstubs.h
+1
-1
gdiplusimaging.h
include/gdiplusimaging.h
+24
-1
gdiplustypes.h
include/gdiplustypes.h
+1
-0
No files found.
dlls/gdiplus/graphics.c
View file @
b6b97b1e
...
...
@@ -1231,7 +1231,7 @@ GpStatus WINGDIPAPI GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x,
}
GpStatus
WINGDIPAPI
GdipDrawRectangles
(
GpGraphics
*
graphics
,
GpPen
*
pen
,
GpRectF
*
rects
,
INT
count
)
G
DIPCONST
G
pRectF
*
rects
,
INT
count
)
{
GpPointF
*
ptf
;
POINT
*
pti
;
...
...
dlls/gdiplus/image.c
View file @
b6b97b1e
...
...
@@ -34,8 +34,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
gdiplus
);
typedef
void
ImageItemData
;
#define PIXELFORMATBPP(x) ((x) ? ((x) >> 8) & 255 : 24)
static
INT
ipicture_pixel_height
(
IPicture
*
pic
)
...
...
include/gdiplusflat.h
View file @
b6b97b1e
...
...
@@ -29,6 +29,7 @@ extern "C" {
GpStatus
WINGDIPAPI
GdipClonePen
(
GpPen
*
,
GpPen
**
);
GpStatus
WINGDIPAPI
GdipCreatePen1
(
ARGB
,
REAL
,
GpUnit
,
GpPen
**
);
GpStatus
WINGDIPAPI
GdipCreatePen2
(
GpBrush
*
,
REAL
,
GpUnit
,
GpPen
**
);
GpStatus
WINGDIPAPI
GdipDeletePen
(
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPenBrushFill
(
GpPen
*
,
GpBrush
**
);
GpStatus
WINGDIPAPI
GdipGetPenColor
(
GpPen
*
,
ARGB
*
);
...
...
@@ -53,36 +54,61 @@ GpStatus WINGDIPAPI GdipCreateFromHDC(HDC,GpGraphics**);
GpStatus
WINGDIPAPI
GdipCreateFromHWND
(
HWND
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipCreateLineBrush
(
GDIPCONST
GpPointF
*
,
GDIPCONST
GpPointF
*
,
ARGB
,
ARGB
,
GpWrapMode
,
GpLineGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateLineBrushI
(
GDIPCONST
GpPoint
*
,
GDIPCONST
GpPoint
*
,
ARGB
,
ARGB
,
GpWrapMode
,
GpLineGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateLineBrushFromRect
(
GDIPCONST
GpRectF
*
,
ARGB
,
ARGB
,
LinearGradientMode
,
GpWrapMode
,
GpLineGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateLineBrushFromRectI
(
GDIPCONST
GpRect
*
,
ARGB
,
ARGB
,
LinearGradientMode
,
GpWrapMode
,
GpLineGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromEmf
(
HENHMETAFILE
,
BOOL
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromWmf
(
HMETAFILE
,
BOOL
,
GDIPCONST
WmfPlaceableFileHeader
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateStreamOnFile
(
GDIPCONST
WCHAR
*
,
UINT
,
IStream
**
);
GpStatus
WINGDIPAPI
GdipDeleteGraphics
(
GpGraphics
*
);
GpStatus
WINGDIPAPI
GdipDrawArc
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawBezier
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawArcI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawBezier
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawBezierI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawCurve
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawCurveI
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPoint
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawCurve2
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPointF
*
,
INT
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawCurve2I
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPoint
*
,
INT
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawImageI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawImagePointsRect
(
GpGraphics
*
,
GpImage
*
,
GDIPCONST
GpPointF
*
,
INT
,
REAL
,
REAL
,
REAL
,
REAL
,
GpUnit
,
GDIPCONST
GpImageAttributes
*
,
DrawImageAbort
,
VOID
*
);
GpStatus
WINGDIPAPI
GdipDrawImagePointsRectI
(
GpGraphics
*
,
GpImage
*
,
GDIPCONST
GpPointF
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
GpUnit
,
GDIPCONST
GpImageAttributes
*
,
DrawImageAbort
,
VOID
*
);
GpStatus
WINGDIPAPI
GdipDrawImageRectRect
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
GpUnit
,
GDIPCONST
GpImageAttributes
*
,
DrawImageAbort
,
VOID
*
);
GpStatus
WINGDIPAPI
GdipDrawLine
(
GpGraphics
*
graphics
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawImageRectRectI
(
GpGraphics
*
,
GpImage
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
GpUnit
,
GDIPCONST
GpImageAttributes
*
,
DrawImageAbort
,
VOID
*
);
GpStatus
WINGDIPAPI
GdipDrawLine
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawLineI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawLines
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawLinesI
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPoint
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawPath
(
GpGraphics
*
,
GpPen
*
,
GpPath
*
);
GpStatus
WINGDIPAPI
GdipDrawPie
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawPieI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawRectangle
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawRectangleI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawRectangles
(
GpGraphics
*
,
GpPen
*
,
GpRectF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawRectangles
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpRectF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawRectanglesI
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpRect
*
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawString
(
GpGraphics
*
,
GDIPCONST
WCHAR
*
,
INT
,
GDIPCONST
GpFont
*
,
GDIPCONST
RectF
*
,
GDIPCONST
GpStringFormat
*
,
GDIPCONST
GpBrush
*
);
GpStatus
WINGDIPAPI
GdipFillPath
(
GpGraphics
*
,
GpBrush
*
,
GpPath
*
);
GpStatus
WINGDIPAPI
GdipFillPie
(
GpGraphics
*
,
GpBrush
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipFillPolygonI
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPoint
*
,
INT
,
GpFillMode
);
GpStatus
WINGDIPAPI
GdipFillPieI
(
GpGraphics
*
,
GpBrush
*
,
INT
,
INT
,
INT
,
INT
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipFillPolygon
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPointF
*
,
INT
,
GpFillMode
);
GpStatus
WINGDIPAPI
GdipFillPolygonI
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPoint
*
,
INT
,
GpFillMode
);
GpStatus
WINGDIPAPI
GdipFillPolygon2
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipFillPolygon2I
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPoint
*
,
INT
);
GpStatus
WINGDIPAPI
GdipFillRectangle
(
GpGraphics
*
,
GpBrush
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipFillRectangleI
(
GpGraphics
*
,
GpBrush
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipGetCompositingMode
(
GpGraphics
*
,
CompositingMode
*
);
...
...
@@ -112,8 +138,8 @@ GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics*,GpMatrix*);
GpStatus
WINGDIPAPI
GdipTranslateWorldTransform
(
GpGraphics
*
,
REAL
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipCloneBrush
(
GpBrush
*
,
GpBrush
**
);
GpStatus
WINGDIPAPI
GdipCreatePathGradient
(
GDIPCONST
GpPointF
*
,
INT
,
GpWrapMode
,
GpPathGradient
**
);
GpStatus
WINGDIPAPI
GdipCreatePathGradient
(
GDIPCONST
GpPointF
*
,
INT
,
GpWrapMode
,
GpPathGradient
**
);
GpStatus
WINGDIPAPI
GdipCreatePathGradientI
(
GDIPCONST
GpPoint
*
,
INT
,
GpWrapMode
,
GpPathGradient
**
);
GpStatus
WINGDIPAPI
GdipCreatePathGradientFromPath
(
GDIPCONST
GpPath
*
,
GpPathGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateSolidFill
(
ARGB
,
GpSolidFill
**
);
...
...
@@ -122,12 +148,14 @@ GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage*,GDIPCONST GpImageAttributes*,
GpStatus
WINGDIPAPI
GdipDeleteBrush
(
GpBrush
*
);
GpStatus
WINGDIPAPI
GdipGetBrushType
(
GpBrush
*
,
GpBrushType
*
);
GpStatus
WINGDIPAPI
GdipGetLineGammaCorrection
(
GpLineGradient
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientCenterColor
(
GpPathGradient
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientCenterPoint
(
GpPathGradient
*
,
GpPointF
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientFocusScales
(
GpPathGradient
*
,
REAL
*
,
REAL
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientGammaCorrection
(
GpPathGradient
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientPointCount
(
GpPathGradient
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientSurroundColorsWithCount
(
GpPathGradient
*
,
ARGB
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientWrapMode
(
GpPathGradient
*
,
GpWrapMode
*
);
GpStatus
WINGDIPAPI
GdipGetSolidFillColor
(
GpSolidFill
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipSetLineBlend
(
GpLineGradient
*
,
GDIPCONST
REAL
*
,
GDIPCONST
REAL
*
,
INT
);
...
...
@@ -149,6 +177,8 @@ GpStatus WINGDIPAPI GdipAddPathArc(GpPath*,REAL,REAL,REAL,REAL,REAL,REAL);
GpStatus
WINGDIPAPI
GdipAddPathBezierI
(
GpPath
*
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathBeziers
(
GpPath
*
,
GDIPCONST
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathEllipse
(
GpPath
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipAddPathEllipseI
(
GpPath
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathLine
(
GpPath
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipAddPathLine2
(
GpPath
*
,
GDIPCONST
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathLineI
(
GpPath
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathPath
(
GpPath
*
,
GDIPCONST
GpPath
*
,
BOOL
);
...
...
@@ -159,14 +189,14 @@ GpStatus WINGDIPAPI GdipCreatePath(GpFillMode,GpPath**);
GpStatus
WINGDIPAPI
GdipCreatePath2
(
GDIPCONST
GpPointF
*
,
GDIPCONST
BYTE
*
,
INT
,
GpFillMode
,
GpPath
**
);
GpStatus
WINGDIPAPI
GdipDeletePath
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipFillPolygon
(
GpGraphics
*
,
GpBrush
*
,
GDIPCONST
GpPointF
*
,
INT
,
GpFillMode
);
GpStatus
WINGDIPAPI
GdipGetPathFillMode
(
GpPath
*
,
GpFillMode
*
);
GpStatus
WINGDIPAPI
GdipGetPathPoints
(
GpPath
*
,
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetPathTypes
(
GpPath
*
,
BYTE
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetPathWorldBounds
(
GpPath
*
,
GpRectF
*
,
GDIPCONST
GpMatrix
*
,
GDIPCONST
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPathWorldBounds
(
GpPath
*
,
GpRectF
*
,
GDIPCONST
GpMatrix
*
,
GDIPCONST
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPathWorldBoundsI
(
GpPath
*
,
GpRect
*
,
GDIPCONST
GpMatrix
*
,
GDIPCONST
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPointCount
(
GpPath
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPoint
(
GpPath
*
,
REAL
,
REAL
,
GpPen
*
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPointI
(
GpPath
*
,
INT
,
INT
,
GpPen
*
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipResetPath
(
GpPath
*
);
...
...
@@ -175,8 +205,6 @@ GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
GpStatus
WINGDIPAPI
GdipTransformPath
(
GpPath
*
,
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipCloneMatrix
(
GpMatrix
*
,
GpMatrix
**
);
GpStatus
WINGDIPAPI
GdipCreateLineBrushFromRectI
(
GDIPCONST
GpRect
*
,
ARGB
,
ARGB
,
LinearGradientMode
,
GpWrapMode
,
GpLineGradient
**
);
GpStatus
WINGDIPAPI
GdipCreateMatrix
(
GpMatrix
**
);
GpStatus
WINGDIPAPI
GdipCreateMatrix2
(
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
GpMatrix
**
);
GpStatus
WINGDIPAPI
GdipCreateMatrix3
(
GDIPCONST
GpRectF
*
,
GDIPCONST
GpPointF
*
,
...
...
@@ -205,6 +233,7 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeCaps(GpCustomLineCap*,GpLineCap,
GpLineCap
);
GpStatus
WINGDIPAPI
GdipBitmapGetPixel
(
GpBitmap
*
,
INT
,
INT
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipBitmapSetPixel
(
GpBitmap
*
,
INT
,
INT
,
ARGB
);
GpStatus
WINGDIPAPI
GdipBitmapLockBits
(
GpBitmap
*
,
GDIPCONST
GpRect
*
,
UINT
,
PixelFormat
,
BitmapData
*
);
GpStatus
WINGDIPAPI
GdipConvertToEmfPlus
(
const
GpGraphics
*
,
GpMetafile
*
,
BOOL
*
,
...
...
@@ -216,6 +245,9 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromScan0(INT,INT,INT,PixelFormat,BYTE*,
GpStatus
WINGDIPAPI
GdipCreateBitmapFromStream
(
IStream
*
,
GpBitmap
**
);
GpStatus
WINGDIPAPI
GdipCreateBitmapFromStreamICM
(
IStream
*
,
GpBitmap
**
);
GpStatus
WINGDIPAPI
GdipDisposeImage
(
GpImage
*
);
GpStatus
WINGDIPAPI
GdipFindFirstImageItem
(
GpImage
*
,
ImageItemData
*
);
GpStatus
WINGDIPAPI
GdipFindNextImageItem
(
GpImage
*
,
ImageItemData
*
);
GpStatus
WINGDIPAPI
GdipGetImageItemData
(
GpImage
*
,
ImageItemData
*
);
GpStatus
WINGDIPAPI
GdipGetImageBounds
(
GpImage
*
,
GpRectF
*
,
GpUnit
*
);
GpStatus
WINGDIPAPI
GdipGetImageGraphicsContext
(
GpImage
*
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipGetImageHeight
(
GpImage
*
,
UINT
*
);
...
...
@@ -225,14 +257,21 @@ GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage*,GUID*);
GpStatus
WINGDIPAPI
GdipGetImageType
(
GpImage
*
,
ImageType
*
);
GpStatus
WINGDIPAPI
GdipGetImageVerticalResolution
(
GpImage
*
,
REAL
*
);
GpStatus
WINGDIPAPI
GdipGetImageWidth
(
GpImage
*
,
UINT
*
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromEmf
(
HENHMETAFILE
,
MetafileHeader
*
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromFile
(
GDIPCONST
WCHAR
*
,
MetafileHeader
*
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromMetafile
(
GpMetafile
*
,
MetafileHeader
*
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromStream
(
IStream
*
,
MetafileHeader
*
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromWmf
(
HMETAFILE
,
GDIPCONST
WmfPlaceableFileHeader
*
,
MetafileHeader
*
);
GpStatus
WINGDIPAPI
GdipGetPropertyItemSize
(
GpImage
*
,
PROPID
,
UINT
*
);
GpStatus
WINGDIPAPI
GdipImageGetFrameCount
(
GpImage
*
,
GDIPCONST
GUID
*
,
UINT
*
);
GpStatus
WINGDIPAPI
GdipImageGetFrameDimensionsList
(
GpImage
*
,
GUID
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipImageSelectActiveFrame
(
GpImage
*
,
GDIPCONST
GUID
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipLoadImageFromFile
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromFileICM
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromStream
(
IStream
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromStreamICM
(
IStream
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipRemovePropertyItem
(
GpImage
*
,
PROPID
);
GpStatus
WINGDIPAPI
GdipSaveImageToFile
(
GpImage
*
,
GDIPCONST
WCHAR
*
,
GDIPCONST
CLSID
*
,
GDIPCONST
EncoderParameters
*
);
GpStatus
WINGDIPAPI
GdipSaveImageToStream
(
GpImage
*
,
IStream
*
,
GDIPCONST
CLSID
*
,
GDIPCONST
EncoderParameters
*
);
GpStatus
WINGDIPAPI
GdipSetImagePalette
(
GpImage
*
,
GDIPCONST
ColorPalette
*
);
...
...
include/gdiplusgpstubs.h
View file @
b6b97b1e
...
...
@@ -69,12 +69,12 @@ typedef FillMode GpFillMode;
typedef
PathData
GpPathData
;
typedef
LineCap
GpLineCap
;
typedef
RectF
GpRectF
;
typedef
Rect
GpRect
;
typedef
LineJoin
GpLineJoin
;
typedef
DashCap
GpDashCap
;
typedef
DashStyle
GpDashStyle
;
typedef
MatrixOrder
GpMatrixOrder
;
typedef
Point
GpPoint
;
typedef
WrapMode
GpWrapMode
;
typedef
Rect
GpRect
;
#endif
include/gdiplusimaging.h
View file @
b6b97b1e
...
...
@@ -54,6 +54,18 @@ public:
UINT_PTR
Reserved
;
};
class
ImageItemData
{
public
:
UINT
Size
;
UINT
Position
;
VOID
*
Desc
;
UINT
DescSize
;
VOID
*
Data
;
UINT
DataSize
;
UINT
Cookie
;
};
#else
/* end of c++ typedefs */
typedef
enum
ImageLockMode
ImageLockMode
;
...
...
@@ -80,7 +92,18 @@ typedef struct BitmapData
PixelFormat
PixelFormat
;
VOID
*
Scan0
;
UINT_PTR
Reserved
;
/* undocumented: stores the lock mode */
}
BitmapData
;
}
BitmapData
;
typedef
struct
ImageItemData
{
UINT
Size
;
UINT
Position
;
VOID
*
Desc
;
UINT
DescSize
;
VOID
*
Data
;
UINT
DataSize
;
UINT
Cookie
;
}
ImageItemData
;
#endif
/* end of c typedefs */
...
...
include/gdiplustypes.h
View file @
b6b97b1e
...
...
@@ -177,6 +177,7 @@ public:
REAL
Height
;
};
/* FIXME: missing the methods. */
class
Rect
{
public
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment