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
9fbec615
Commit
9fbec615
authored
Jul 08, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: GdipGetLineWrapMode implementation.
parent
f1fd5667
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
brush.c
dlls/gdiplus/brush.c
+10
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/brush.c
View file @
9fbec615
...
@@ -482,6 +482,16 @@ GpStatus WINGDIPAPI GdipGetLineGammaCorrection(GpLineGradient *line,
...
@@ -482,6 +482,16 @@ GpStatus WINGDIPAPI GdipGetLineGammaCorrection(GpLineGradient *line,
return
Ok
;
return
Ok
;
}
}
GpStatus
WINGDIPAPI
GdipGetLineWrapMode
(
GpLineGradient
*
brush
,
GpWrapMode
*
wrapmode
)
{
if
(
!
brush
||
!
wrapmode
)
return
InvalidParameter
;
*
wrapmode
=
brush
->
wrap
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetPathGradientCenterPoint
(
GpPathGradient
*
grad
,
GpStatus
WINGDIPAPI
GdipGetPathGradientCenterPoint
(
GpPathGradient
*
grad
,
GpPointF
*
point
)
GpPointF
*
point
)
{
{
...
...
dlls/gdiplus/gdiplus.spec
View file @
9fbec615
...
@@ -310,7 +310,7 @@
...
@@ -310,7 +310,7 @@
@ stdcall GdipGetLineRectI(ptr ptr)
@ stdcall GdipGetLineRectI(ptr ptr)
@ stdcall GdipGetLineSpacing(ptr long ptr)
@ stdcall GdipGetLineSpacing(ptr long ptr)
@ stub GdipGetLineTransform
@ stub GdipGetLineTransform
@ st
ub GdipGetLineWrapMode
@ st
dcall GdipGetLineWrapMode(ptr ptr)
@ stub GdipGetLogFontA
@ stub GdipGetLogFontA
@ stdcall GdipGetLogFontW(ptr ptr ptr)
@ stdcall GdipGetLogFontW(ptr ptr ptr)
@ stdcall GdipGetMatrixElements(ptr ptr)
@ stdcall GdipGetMatrixElements(ptr ptr)
...
...
include/gdiplusflat.h
View file @
9fbec615
...
@@ -179,6 +179,7 @@ GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage*,GDIPCONST GpImageAttributes*,
...
@@ -179,6 +179,7 @@ GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage*,GDIPCONST GpImageAttributes*,
GpStatus
WINGDIPAPI
GdipDeleteBrush
(
GpBrush
*
);
GpStatus
WINGDIPAPI
GdipDeleteBrush
(
GpBrush
*
);
GpStatus
WINGDIPAPI
GdipGetBrushType
(
GpBrush
*
,
GpBrushType
*
);
GpStatus
WINGDIPAPI
GdipGetBrushType
(
GpBrush
*
,
GpBrushType
*
);
GpStatus
WINGDIPAPI
GdipGetLineGammaCorrection
(
GpLineGradient
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetLineGammaCorrection
(
GpLineGradient
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipGetLineWrapMode
(
GpLineGradient
*
,
GpWrapMode
*
);
GpStatus
WINGDIPAPI
GdipGetLineRect
(
GpLineGradient
*
,
GpRectF
*
);
GpStatus
WINGDIPAPI
GdipGetLineRect
(
GpLineGradient
*
,
GpRectF
*
);
GpStatus
WINGDIPAPI
GdipGetLineRectI
(
GpLineGradient
*
,
GpRect
*
);
GpStatus
WINGDIPAPI
GdipGetLineRectI
(
GpLineGradient
*
,
GpRect
*
);
GpStatus
WINGDIPAPI
GdipGetLineColors
(
GpLineGradient
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipGetLineColors
(
GpLineGradient
*
,
ARGB
*
);
...
...
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