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
6d9e4a4a
Commit
6d9e4a4a
authored
Jul 30, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Jul 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added a minimal implementation of GdipCreateImageAttributes.
parent
55c77d46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
gdiplus_private.h
dlls/gdiplus/gdiplus_private.h
+4
-0
imageattributes.c
dlls/gdiplus/imageattributes.c
+3
-5
No files found.
dlls/gdiplus/gdiplus_private.h
View file @
6d9e4a4a
...
...
@@ -126,4 +126,8 @@ struct GpMetafile{
GpImage
image
;
};
struct
GpImageAttributes
{
WrapMode
wrap
;
};
#endif
dlls/gdiplus/imageattributes.c
View file @
6d9e4a4a
...
...
@@ -26,15 +26,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
GpStatus
WINGDIPAPI
GdipCreateImageAttributes
(
GpImageAttributes
**
imageattr
)
{
static
int
calls
;
if
(
!
imageattr
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
)
;
*
imageattr
=
GdipAlloc
(
sizeof
(
GpImageAttributes
));
if
(
!*
imageattr
)
return
OutOfMemory
;
return
NotImplemented
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipDisposeImageAttributes
(
GpImageAttributes
*
imageattr
)
...
...
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