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
8d6ee561
Commit
8d6ee561
authored
May 31, 2009
by
Andrew Eikum
Committed by
Alexandre Julliard
Jun 01, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stubs for GdipAddPathString and GdipAddPathStringI.
parent
c170567e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
graphicspath.c
dlls/gdiplus/graphicspath.c
+12
-0
gdiplusflat.h
include/gdiplusflat.h
+2
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
8d6ee561
...
...
@@ -29,8 +29,8 @@
@ stdcall GdipAddPathRectangleI(ptr long long long long)
@ stdcall GdipAddPathRectangles(ptr ptr long)
@ stdcall GdipAddPathRectanglesI(ptr ptr long)
@ st
ub GdipAddPathString
@ st
ub GdipAddPathStringI
@ st
dcall GdipAddPathString(ptr wstr long ptr long long ptr ptr)
@ st
dcall GdipAddPathStringI(ptr wstr long ptr long long ptr ptr)
@ stdcall GdipAlloc(long)
@ stdcall GdipBeginContainer2(ptr ptr)
@ stub GdipBeginContainer
...
...
dlls/gdiplus/graphicspath.c
View file @
8d6ee561
...
...
@@ -831,6 +831,18 @@ GpStatus WINGDIPAPI GdipAddPathPolygonI(GpPath *path, GDIPCONST GpPoint *points,
return
status
;
}
GpStatus
WINGDIPAPI
GdipAddPathString
(
GpPath
*
path
,
GDIPCONST
WCHAR
*
string
,
INT
length
,
GDIPCONST
GpFontFamily
*
family
,
INT
style
,
REAL
emSize
,
GDIPCONST
RectF
*
layoutRect
,
GDIPCONST
GpStringFormat
*
format
)
{
FIXME
(
"(%p, %p, %d, %p, %d, %f, %p, %p): stub
\n
"
,
path
,
string
,
length
,
family
,
style
,
emSize
,
layoutRect
,
format
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipAddPathStringI
(
GpPath
*
path
,
GDIPCONST
WCHAR
*
string
,
INT
length
,
GDIPCONST
GpFontFamily
*
family
,
INT
style
,
REAL
emSize
,
GDIPCONST
Rect
*
layoutRect
,
GDIPCONST
GpStringFormat
*
format
)
{
FIXME
(
"(%p, %p, %d, %p, %d, %f, %p, %p): stub
\n
"
,
path
,
string
,
length
,
family
,
style
,
emSize
,
layoutRect
,
format
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipClonePath
(
GpPath
*
path
,
GpPath
**
clone
)
{
TRACE
(
"(%p, %p)
\n
"
,
path
,
clone
);
...
...
include/gdiplusflat.h
View file @
8d6ee561
...
...
@@ -281,6 +281,8 @@ GpStatus WINGDIPAPI GdipAddPathRectangle(GpPath*,REAL,REAL,REAL,REAL);
GpStatus
WINGDIPAPI
GdipAddPathRectangleI
(
GpPath
*
,
INT
,
INT
,
INT
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathRectangles
(
GpPath
*
,
GDIPCONST
GpRectF
*
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathRectanglesI
(
GpPath
*
,
GDIPCONST
GpRect
*
,
INT
);
GpStatus
WINGDIPAPI
GdipAddPathString
(
GpPath
*
,
GDIPCONST
WCHAR
*
,
INT
,
GDIPCONST
GpFontFamily
*
,
INT
,
REAL
,
GDIPCONST
RectF
*
,
GDIPCONST
GpStringFormat
*
);
GpStatus
WINGDIPAPI
GdipAddPathStringI
(
GpPath
*
,
GDIPCONST
WCHAR
*
,
INT
,
GDIPCONST
GpFontFamily
*
,
INT
,
REAL
,
GDIPCONST
Rect
*
,
GDIPCONST
GpStringFormat
*
);
GpStatus
WINGDIPAPI
GdipClearPathMarkers
(
GpPath
*
);
GpStatus
WINGDIPAPI
GdipClonePath
(
GpPath
*
,
GpPath
**
);
GpStatus
WINGDIPAPI
GdipClosePathFigure
(
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