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
64035b30
Commit
64035b30
authored
Jul 12, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Jul 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipGetPathFillMode.
parent
3dc17d25
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphicspath.c
dlls/gdiplus/graphicspath.c
+10
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
64035b30
...
...
@@ -308,7 +308,7 @@
@ stub GdipGetPageScale
@ stub GdipGetPageUnit
@ stub GdipGetPathData
@ st
ub GdipGetPathFillMode
@ st
dcall GdipGetPathFillMode(ptr ptr)
@ stub GdipGetPathGradientBlend
@ stub GdipGetPathGradientBlendCount
@ stub GdipGetPathGradientCenterColor
...
...
dlls/gdiplus/graphicspath.c
View file @
64035b30
...
...
@@ -179,6 +179,16 @@ GpStatus WINGDIPAPI GdipDeletePath(GpPath *path)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetPathFillMode
(
GpPath
*
path
,
GpFillMode
*
fillmode
)
{
if
(
!
path
||
!
fillmode
)
return
InvalidParameter
;
*
fillmode
=
path
->
fill
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetPathPoints
(
GpPath
*
path
,
GpPointF
*
points
,
INT
count
)
{
if
(
!
path
)
...
...
include/gdiplusflat.h
View file @
64035b30
...
...
@@ -56,6 +56,7 @@ GpStatus WINGDIPAPI GdipClosePathFigure(GpPath*);
GpStatus
WINGDIPAPI
GdipClosePathFigures
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipCreatePath
(
GpFillMode
,
GpPath
**
);
GpStatus
WINGDIPAPI
GdipDeletePath
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipGetPathFillMode
(
GpPath
*
,
GpFillMode
*
);
GpStatus
WINGDIPAPI
GdipGetPathPoints
(
GpPath
*
,
GpPointF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetPathTypes
(
GpPath
*
,
BYTE
*
,
INT
);
GpStatus
WINGDIPAPI
GdipGetPathWorldBounds
(
GpPath
*
,
GpRectF
*
,
GDIPCONST
GpMatrix
*
,
...
...
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