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
da7fe7ab
Commit
da7fe7ab
authored
Apr 17, 2013
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Apr 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipSetCustomLineCapWidthScale.
parent
2a63cf67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
customlinecap.c
dlls/gdiplus/customlinecap.c
+6
-7
No files found.
dlls/gdiplus/customlinecap.c
View file @
da7fe7ab
...
...
@@ -221,17 +221,16 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetCustomLineCapWidthScale
(
GpCustomLineCap
*
custom
,
REAL
width
)
GpStatus
WINGDIPAPI
GdipSetCustomLineCapWidthScale
(
GpCustomLineCap
*
custom
,
REAL
width
)
{
static
int
calls
;
TRACE
(
"(%p,%0.2f)
\n
"
,
custom
,
width
);
if
(
!
(
calls
++
)
)
FIXME
(
"not implemented
\n
"
)
;
if
(
!
custom
)
return
InvalidParameter
;
return
NotImplemented
;
custom
->
scale
=
width
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetCustomLineCapBaseCap
(
GpCustomLineCap
*
customCap
,
GpLineCap
*
baseCap
)
...
...
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