Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
2e3492f9
Commit
2e3492f9
authored
Nov 15, 2009
by
Marcin Baczyński
Committed by
Alexandre Julliard
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add missing declarations for graphics.c functions.
parent
f4b88e34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
gdiplusflat.h
include/gdiplusflat.h
+9
-0
No files found.
include/gdiplusflat.h
View file @
2e3492f9
...
...
@@ -134,6 +134,7 @@ GpStatus WINGDIPAPI GdipCreateFromHDC(HDC,GpGraphics**);
GpStatus
WINGDIPAPI
GdipCreateFromHDC2
(
HDC
,
HANDLE
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipCreateFromHWND
(
HWND
,
GpGraphics
**
);
GpStatus
WINGDIPAPI
GdipCreateFromHWNDICM
(
HWND
,
GpGraphics
**
);
HPALETTE
WINGDIPAPI
GdipCreateHalftonePalette
(
void
);
GpStatus
WINGDIPAPI
GdipDeleteGraphics
(
GpGraphics
*
);
GpStatus
WINGDIPAPI
GdipDrawArc
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawArcI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
,
REAL
,
REAL
);
...
...
@@ -151,6 +152,8 @@ GpStatus WINGDIPAPI GdipDrawCurve2(GpGraphics*,GpPen*,GDIPCONST GpPointF*,INT,RE
GpStatus
WINGDIPAPI
GdipDrawCurve2I
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPoint
*
,
INT
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawCurve3
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPointF
*
,
INT
,
INT
,
INT
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawCurve3I
(
GpGraphics
*
,
GpPen
*
,
GDIPCONST
GpPoint
*
,
INT
,
INT
,
INT
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawDriverString
(
GpGraphics
*
,
GDIPCONST
UINT16
*
,
INT
,
GDIPCONST
GpFont
*
,
GDIPCONST
GpBrush
*
,
GDIPCONST
PointF
*
,
INT
,
GDIPCONST
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipDrawEllipse
(
GpGraphics
*
,
GpPen
*
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipDrawEllipseI
(
GpGraphics
*
,
GpPen
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipDrawImage
(
GpGraphics
*
,
GpImage
*
,
REAL
,
REAL
);
...
...
@@ -238,9 +241,13 @@ GpStatus WINGDIPAPI GdipIsVisibleRectI(GpGraphics*,INT,INT,INT,INT,BOOL*);
GpStatus
WINGDIPAPI
GdipMeasureCharacterRanges
(
GpGraphics
*
,
GDIPCONST
WCHAR
*
,
INT
,
GDIPCONST
GpFont
*
,
GDIPCONST
RectF
*
,
GDIPCONST
GpStringFormat
*
,
INT
,
GpRegion
**
);
GpStatus
WINGDIPAPI
GdipMeasureDriverString
(
GpGraphics
*
,
GDIPCONST
UINT16
*
,
INT
,
GDIPCONST
GpFont
*
,
GDIPCONST
PointF
*
,
INT
,
GDIPCONST
GpMatrix
*
,
RectF
*
);
GpStatus
WINGDIPAPI
GdipMeasureString
(
GpGraphics
*
,
GDIPCONST
WCHAR
*
,
INT
,
GDIPCONST
GpFont
*
,
GDIPCONST
RectF
*
,
GDIPCONST
GpStringFormat
*
,
RectF
*
,
INT
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipMultiplyWorldTransform
(
GpGraphics
*
,
GDIPCONST
GpMatrix
*
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipRecordMetafileI
(
HDC
,
EmfType
,
GDIPCONST
GpRect
*
,
MetafileFrameUnit
,
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipReleaseDC
(
GpGraphics
*
,
HDC
);
GpStatus
WINGDIPAPI
GdipResetClip
(
GpGraphics
*
);
GpStatus
WINGDIPAPI
GdipResetWorldTransform
(
GpGraphics
*
);
...
...
@@ -249,6 +256,7 @@ GpStatus WINGDIPAPI GdipRotateWorldTransform(GpGraphics*,REAL,GpMatrixOrder);
GpStatus
WINGDIPAPI
GdipSaveGraphics
(
GpGraphics
*
,
GraphicsState
*
);
GpStatus
WINGDIPAPI
GdipScaleWorldTransform
(
GpGraphics
*
,
REAL
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipSetClipHrgn
(
GpGraphics
*
,
HRGN
,
CombineMode
);
GpStatus
WINGDIPAPI
GdipSetClipGraphics
(
GpGraphics
*
,
GpGraphics
*
,
CombineMode
);
GpStatus
WINGDIPAPI
GdipSetClipPath
(
GpGraphics
*
,
GpPath
*
,
CombineMode
);
GpStatus
WINGDIPAPI
GdipSetClipRect
(
GpGraphics
*
,
REAL
,
REAL
,
REAL
,
REAL
,
CombineMode
);
GpStatus
WINGDIPAPI
GdipSetClipRectI
(
GpGraphics
*
,
INT
,
INT
,
INT
,
INT
,
CombineMode
);
...
...
@@ -259,6 +267,7 @@ GpStatus WINGDIPAPI GdipSetInterpolationMode(GpGraphics*,InterpolationMode);
GpStatus
WINGDIPAPI
GdipSetPageScale
(
GpGraphics
*
,
REAL
);
GpStatus
WINGDIPAPI
GdipSetPageUnit
(
GpGraphics
*
,
GpUnit
);
GpStatus
WINGDIPAPI
GdipSetPixelOffsetMode
(
GpGraphics
*
,
PixelOffsetMode
);
GpStatus
WINGDIPAPI
GdipSetRenderingOrigin
(
GpGraphics
*
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipSetSmoothingMode
(
GpGraphics
*
,
SmoothingMode
);
GpStatus
WINGDIPAPI
GdipSetTextContrast
(
GpGraphics
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipSetTextRenderingHint
(
GpGraphics
*
,
TextRenderingHint
);
...
...
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