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
b60e9819
Commit
b60e9819
authored
Nov 18, 2009
by
Marcin Baczyński
Committed by
Alexandre Julliard
Nov 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add missing declarations for brush.c.
parent
27fb36b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
gdiplusflat.h
include/gdiplusflat.h
+16
-0
No files found.
include/gdiplusflat.h
View file @
b60e9819
...
...
@@ -350,6 +350,7 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath*,GpMatrix*);
GpStatus
WINGDIPAPI
GdipCreateHatchBrush
(
HatchStyle
,
ARGB
,
ARGB
,
GpHatch
**
);
GpStatus
WINGDIPAPI
GdipGetHatchBackgroundColor
(
GpHatch
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipGetHatchForegroundColor
(
GpHatch
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipGetHatchStyle
(
GpHatch
*
,
HatchStyle
*
);
/* Image */
GpStatus
WINGDIPAPI
GdipCloneImage
(
GpImage
*
,
GpImage
**
);
...
...
@@ -430,11 +431,18 @@ GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient*,GDIPCONST ARGB*,
GDIPCONST
REAL
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetLinePresetBlend
(
GpLineGradient
*
,
ARGB
*
,
REAL
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetLinePresetBlendCount
(
GpLineGradient
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipResetLineTransform
(
GpLineGradient
*
);
GpStatus
WINGDIPAPI
GdipRotateLineTransform
(
GpLineGradient
*
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipScaleLineTransform
(
GpLineGradient
*
,
REAL
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipSetLineColors
(
GpLineGradient
*
,
ARGB
,
ARGB
);
GpStatus
WINGDIPAPI
GdipSetLineGammaCorrection
(
GpLineGradient
*
,
BOOL
);
GpStatus
WINGDIPAPI
GdipSetLineSigmaBlend
(
GpLineGradient
*
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipSetLineTransform
(
GpLineGradient
*
,
GDIPCONST
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipSetLineLinearBlend
(
GpLineGradient
*
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipSetLineWrapMode
(
GpLineGradient
*
,
GpWrapMode
);
GpStatus
WINGDIPAPI
GdipTranslateLineTransform
(
GpLineGradient
*
,
REAL
,
REAL
,
GpMatrixOrder
);
/* Matrix */
GpStatus
WINGDIPAPI
GdipCloneMatrix
(
GpMatrix
*
,
GpMatrix
**
);
...
...
@@ -493,6 +501,8 @@ GpStatus WINGDIPAPI GdipGetPathGradientCenterPointI(GpPathGradient*,GpPoint*);
GpStatus
WINGDIPAPI
GdipGetPathGradientFocusScales
(
GpPathGradient
*
,
REAL
*
,
REAL
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientGammaCorrection
(
GpPathGradient
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientPointCount
(
GpPathGradient
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipSetPathGradientPresetBlend
(
GpPathGradient
*
,
GDIPCONST
ARGB
*
,
GDIPCONST
REAL
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetPathGradientRect
(
GpPathGradient
*
,
GpRectF
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientRectI
(
GpPathGradient
*
,
GpRect
*
);
GpStatus
WINGDIPAPI
GdipGetPathGradientSurroundColorsWithCount
(
GpPathGradient
*
,
...
...
@@ -638,9 +648,15 @@ GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage*,GDIPCONST GpImageAttributes*,
INT
,
INT
,
INT
,
INT
,
GpTexture
**
);
GpStatus
WINGDIPAPI
GdipGetTextureTransform
(
GpTexture
*
,
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipGetTextureWrapMode
(
GpTexture
*
,
GpWrapMode
*
);
GpStatus
WINGDIPAPI
GdipMultiplyTextureTransform
(
GpTexture
*
,
GDIPCONST
GpMatrix
*
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipResetTextureTransform
(
GpTexture
*
);
GpStatus
WINGDIPAPI
GdipRotateTextureTransform
(
GpTexture
*
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipScaleTextureTransform
(
GpTexture
*
,
REAL
,
REAL
,
GpMatrixOrder
);
GpStatus
WINGDIPAPI
GdipSetTextureTransform
(
GpTexture
*
,
GDIPCONST
GpMatrix
*
);
GpStatus
WINGDIPAPI
GdipSetTextureWrapMode
(
GpTexture
*
,
GpWrapMode
);
GpStatus
WINGDIPAPI
GdipTranslateTextureTransform
(
GpTexture
*
,
REAL
,
REAL
,
GpMatrixOrder
);
/* Without wrapper methods */
GpStatus
WINGDIPAPI
GdipCreateStreamOnFile
(
GDIPCONST
WCHAR
*
,
UINT
,
IStream
**
);
...
...
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