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
71310541
Commit
71310541
authored
Jun 27, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implemented GdipCloneImageAttributes.
parent
002b7c82
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
imageattributes.c
dlls/gdiplus/imageattributes.c
+11
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
71310541
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
@ stdcall GdipCloneFont(ptr ptr)
@ stdcall GdipCloneFont(ptr ptr)
@ stub GdipCloneFontFamily
@ stub GdipCloneFontFamily
@ stub GdipCloneImage
@ stub GdipCloneImage
@ st
ub GdipCloneImageAttributes
@ st
dcall GdipCloneImageAttributes(ptr ptr)
@ stdcall GdipCloneMatrix(ptr ptr)
@ stdcall GdipCloneMatrix(ptr ptr)
@ stdcall GdipClonePath(ptr ptr)
@ stdcall GdipClonePath(ptr ptr)
@ stdcall GdipClonePen(ptr ptr)
@ stdcall GdipClonePen(ptr ptr)
...
...
dlls/gdiplus/imageattributes.c
View file @
71310541
...
@@ -27,6 +27,17 @@
...
@@ -27,6 +27,17 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
gdiplus
);
WINE_DEFAULT_DEBUG_CHANNEL
(
gdiplus
);
GpStatus
WINGDIPAPI
GdipCloneImageAttributes
(
GDIPCONST
GpImageAttributes
*
imageattr
,
GpImageAttributes
**
cloneImageattr
)
{
if
(
!
imageattr
||
!
cloneImageattr
)
return
InvalidParameter
;
**
cloneImageattr
=
*
imageattr
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
imageattr
)
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
imageattr
)
{
{
if
(
!
imageattr
)
if
(
!
imageattr
)
...
...
include/gdiplusflat.h
View file @
71310541
...
@@ -336,6 +336,7 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage*,IStream*,
...
@@ -336,6 +336,7 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage*,IStream*,
GDIPCONST
CLSID
*
,
GDIPCONST
EncoderParameters
*
);
GDIPCONST
CLSID
*
,
GDIPCONST
EncoderParameters
*
);
GpStatus
WINGDIPAPI
GdipSetImagePalette
(
GpImage
*
,
GDIPCONST
ColorPalette
*
);
GpStatus
WINGDIPAPI
GdipSetImagePalette
(
GpImage
*
,
GDIPCONST
ColorPalette
*
);
GpStatus
WINGDIPAPI
GdipCloneImageAttributes
(
GDIPCONST
GpImageAttributes
*
,
GpImageAttributes
**
);
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
);
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
);
GpStatus
WINGDIPAPI
GdipDisposeImageAttributes
(
GpImageAttributes
*
);
GpStatus
WINGDIPAPI
GdipDisposeImageAttributes
(
GpImageAttributes
*
);
GpStatus
WINGDIPAPI
GdipSetImageAttributesColorKeys
(
GpImageAttributes
*
,
GpStatus
WINGDIPAPI
GdipSetImageAttributesColorKeys
(
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