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
efcd0bbf
Commit
efcd0bbf
authored
Mar 07, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipCloneBitmapAreaI.
parent
d2b923d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+8
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
efcd0bbf
...
...
@@ -47,7 +47,7 @@
@ stdcall GdipBitmapUnlockBits(ptr ptr)
@ stdcall GdipClearPathMarkers(ptr)
@ stub GdipCloneBitmapArea
@ st
ub GdipCloneBitmapAreaI
@ st
dcall GdipCloneBitmapAreaI(long long long long long ptr ptr)
@ stdcall GdipCloneBrush(ptr ptr)
@ stdcall GdipCloneCustomLineCap(ptr ptr)
@ stdcall GdipCloneFont(ptr ptr)
...
...
dlls/gdiplus/image.c
View file @
efcd0bbf
...
...
@@ -249,6 +249,14 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipCloneBitmapAreaI
(
INT
x
,
INT
y
,
INT
width
,
INT
height
,
PixelFormat
format
,
GpBitmap
*
srcBitmap
,
GpBitmap
**
dstBitmap
)
{
FIXME
(
"(%i,%i,%i,%i,%i,%p,%p)
\n
"
,
x
,
y
,
width
,
height
,
format
,
srcBitmap
,
dstBitmap
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipCloneImage
(
GpImage
*
image
,
GpImage
**
cloneImage
)
{
IStream
*
stream
;
...
...
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