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
fc1a1f66
Commit
fc1a1f66
authored
Jul 10, 2008
by
Huw Davies
Committed by
Alexandre Julliard
Jul 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stubs for GdipIsVisiblePathPoint[I].
parent
eb9d7f59
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
4 deletions
+29
-4
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+3
-3
graphicspath.c
dlls/gdiplus/graphicspath.c
+23
-0
gdiplusflat.h
include/gdiplusflat.h
+3
-1
No files found.
dlls/gdiplus/gdiplus.spec
View file @
fc1a1f66
...
...
@@ -421,12 +421,12 @@
@ stdcall GdipIsMatrixEqual(ptr ptr ptr)
@ stdcall GdipIsMatrixIdentity(ptr ptr)
@ stdcall GdipIsMatrixInvertible(ptr ptr)
@ st
ub GdipIsOutlineVisiblePathPoint
@ st
dcall GdipIsOutlineVisiblePathPoint(ptr long long ptr ptr ptr)
@ stdcall GdipIsOutlineVisiblePathPointI(ptr long long ptr ptr ptr)
@ stub GdipIsStyleAvailable
@ stub GdipIsVisibleClipEmpty
@ st
ub GdipIsVisiblePathPoint
@ st
ub GdipIsVisiblePathPointI
@ st
dcall GdipIsVisiblePathPoint(ptr long long ptr ptr)
@ st
dcall GdipIsVisiblePathPointI(ptr long long ptr ptr)
@ stub GdipIsVisiblePoint
@ stub GdipIsVisiblePointI
@ stub GdipIsVisibleRect
...
...
dlls/gdiplus/graphicspath.c
View file @
fc1a1f66
...
...
@@ -730,6 +730,12 @@ GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count)
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPointI
(
GpPath
*
path
,
INT
x
,
INT
y
,
GpPen
*
pen
,
GpGraphics
*
graphics
,
BOOL
*
result
)
{
return
GdipIsOutlineVisiblePathPoint
(
path
,
x
,
y
,
pen
,
graphics
,
result
);
}
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPoint
(
GpPath
*
path
,
REAL
x
,
REAL
y
,
GpPen
*
pen
,
GpGraphics
*
graphics
,
BOOL
*
result
)
{
static
int
calls
;
if
(
!
path
||
!
pen
)
...
...
@@ -741,6 +747,23 @@ GpStatus WINGDIPAPI GdipIsOutlineVisiblePathPointI(GpPath* path, INT x, INT y,
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipIsVisiblePathPointI
(
GpPath
*
path
,
INT
x
,
INT
y
,
GpGraphics
*
graphics
,
BOOL
*
result
)
{
return
GdipIsVisiblePathPoint
(
path
,
x
,
y
,
graphics
,
result
);
}
GpStatus
WINGDIPAPI
GdipIsVisiblePathPoint
(
GpPath
*
path
,
REAL
x
,
REAL
y
,
GpGraphics
*
graphics
,
BOOL
*
result
)
{
static
int
calls
;
if
(
!
path
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipStartPathFigure
(
GpPath
*
path
)
{
if
(
!
path
)
...
...
include/gdiplusflat.h
View file @
fc1a1f66
...
...
@@ -266,10 +266,12 @@ GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT);
GpStatus
WINGDIPAPI
GdipGetPathWorldBounds
(
GpPath
*
,
GpRectF
*
,
GDIPCONST
GpMatrix
*
,
GDIPCONST
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPathWorldBoundsI
(
GpPath
*
,
GpRect
*
,
GDIPCONST
GpMatrix
*
,
GDIPCONST
GpPen
*
);
GpStatus
WINGDIPAPI
GdipGetPointCount
(
GpPath
*
,
INT
*
);
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPoint
(
GpPath
*
,
REAL
,
REAL
,
GpPen
*
,
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPoint
(
GpPath
*
,
REAL
,
REAL
,
GpPen
*
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipIsOutlineVisiblePathPointI
(
GpPath
*
,
INT
,
INT
,
GpPen
*
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipIsVisiblePathPoint
(
GpPath
*
,
REAL
,
REAL
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipIsVisiblePathPointI
(
GpPath
*
,
INT
,
INT
,
GpGraphics
*
,
BOOL
*
);
GpStatus
WINGDIPAPI
GdipResetPath
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipSetPathFillMode
(
GpPath
*
,
GpFillMode
);
GpStatus
WINGDIPAPI
GdipStartPathFigure
(
GpPath
*
);
...
...
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