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
3847c2de
Commit
3847c2de
authored
Jun 19, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipGetMetafileHeaderFromStream.
parent
688eb068
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+18
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
3847c2de
...
...
@@ -318,7 +318,7 @@
@ stdcall GdipGetMetafileHeaderFromEmf(ptr ptr)
@ stdcall GdipGetMetafileHeaderFromFile(wstr ptr)
@ stdcall GdipGetMetafileHeaderFromMetafile(ptr ptr)
@ st
ub GdipGetMetafileHeaderFromStream
@ st
dcall GdipGetMetafileHeaderFromStream(ptr ptr)
@ stub GdipGetMetafileHeaderFromWmf
@ stdcall GdipGetNearestColor(ptr ptr)
@ stdcall GdipGetPageScale(ptr ptr)
...
...
dlls/gdiplus/image.c
View file @
3847c2de
...
...
@@ -2246,6 +2246,24 @@ GpStatus WINGDIPAPI GdipGetMetafileHeaderFromFile(GDIPCONST WCHAR *filename,
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromStream
(
IStream
*
stream
,
MetafileHeader
*
header
)
{
static
int
calls
;
TRACE
(
"(%p,%p)
\n
"
,
stream
,
header
);
if
(
!
stream
||
!
header
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
memset
(
header
,
0
,
sizeof
(
MetafileHeader
));
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetAllPropertyItems
(
GpImage
*
image
,
UINT
size
,
UINT
num
,
PropertyItem
*
items
)
{
...
...
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