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
af29f969
Commit
af29f969
authored
Jul 01, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jul 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipCloneImage.
parent
9f65b9a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+9
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
af29f969
...
...
@@ -52,7 +52,7 @@
@ stdcall GdipCloneCustomLineCap(ptr ptr)
@ stdcall GdipCloneFont(ptr ptr)
@ stub GdipCloneFontFamily
@ st
ub GdipCloneImage
@ st
dcall GdipCloneImage(ptr ptr)
@ stdcall GdipCloneImageAttributes(ptr ptr)
@ stdcall GdipCloneMatrix(ptr ptr)
@ stdcall GdipClonePath(ptr ptr)
...
...
dlls/gdiplus/image.c
View file @
af29f969
...
...
@@ -240,6 +240,15 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipCloneImage
(
GpImage
*
image
,
GpImage
**
cloneImage
)
{
if
(
!
(
image
&&
cloneImage
))
return
InvalidParameter
;
FIXME
(
"stub: %p, %p"
,
image
,
cloneImage
);
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipCreateBitmapFromFile
(
GDIPCONST
WCHAR
*
filename
,
GpBitmap
**
bitmap
)
{
...
...
include/gdiplusflat.h
View file @
af29f969
...
...
@@ -344,6 +344,7 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage*,IStream*,
GDIPCONST
CLSID
*
,
GDIPCONST
EncoderParameters
*
);
GpStatus
WINGDIPAPI
GdipSetImagePalette
(
GpImage
*
,
GDIPCONST
ColorPalette
*
);
GpStatus
WINGDIPAPI
GdipCloneImage
(
GpImage
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipCloneImageAttributes
(
GDIPCONST
GpImageAttributes
*
,
GpImageAttributes
**
);
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
);
GpStatus
WINGDIPAPI
GdipDisposeImageAttributes
(
GpImageAttributes
*
);
...
...
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