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
e029d71c
Commit
e029d71c
authored
Jan 26, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipGetHemfFromMetafile.
parent
8fa86b59
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+12
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
e029d71c
...
@@ -278,7 +278,7 @@
...
@@ -278,7 +278,7 @@
@ stdcall GdipGetHatchBackgroundColor(ptr ptr)
@ stdcall GdipGetHatchBackgroundColor(ptr ptr)
@ stdcall GdipGetHatchForegroundColor(ptr ptr)
@ stdcall GdipGetHatchForegroundColor(ptr ptr)
@ stdcall GdipGetHatchStyle(ptr ptr)
@ stdcall GdipGetHatchStyle(ptr ptr)
@ st
ub GdipGetHemfFromMetafile
@ st
dcall GdipGetHemfFromMetafile(ptr ptr)
@ stub GdipGetImageAttributesAdjustedPalette
@ stub GdipGetImageAttributesAdjustedPalette
@ stdcall GdipGetImageBounds(ptr ptr ptr)
@ stdcall GdipGetImageBounds(ptr ptr ptr)
@ stdcall GdipGetImageDecoders(long long ptr)
@ stdcall GdipGetImageDecoders(long long ptr)
...
...
dlls/gdiplus/graphics.c
View file @
e029d71c
...
@@ -5382,3 +5382,15 @@ cleanup:
...
@@ -5382,3 +5382,15 @@ cleanup:
GdipDeleteRegion
(
rgn
);
GdipDeleteRegion
(
rgn
);
return
stat
;
return
stat
;
}
}
GpStatus
WINGDIPAPI
GdipGetHemfFromMetafile
(
GpMetafile
*
metafile
,
HENHMETAFILE
*
hEmf
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
metafile
,
hEmf
);
if
(
!
metafile
||
!
hEmf
)
return
InvalidParameter
;
*
hEmf
=
NULL
;
return
NotImplemented
;
}
include/gdiplusflat.h
View file @
e029d71c
...
@@ -523,6 +523,7 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR*, GDIPCONST Wm
...
@@ -523,6 +523,7 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR*, GDIPCONST Wm
GpMetafile
**
);
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromFile
(
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromFile
(
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromStream
(
IStream
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromStream
(
IStream
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipGetHemfFromMetafile
(
GpMetafile
*
,
HENHMETAFILE
*
);
GpStatus
WINGDIPAPI
GdipSetMetafileDownLevelRasterizationLimit
(
GpMetafile
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipSetMetafileDownLevelRasterizationLimit
(
GpMetafile
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipRecordMetafile
(
HDC
,
EmfType
,
GDIPCONST
GpRectF
*
,
MetafileFrameUnit
,
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipRecordMetafile
(
HDC
,
EmfType
,
GDIPCONST
GpRectF
*
,
MetafileFrameUnit
,
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
...
...
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