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
fd747554
Commit
fd747554
authored
Jul 07, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Jul 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipPlayMetafileRecord.
parent
a26c5f9b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
metafile.c
dlls/gdiplus/metafile.c
+8
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
fd747554
...
...
@@ -443,7 +443,7 @@
443 stdcall GdipPathIterNextSubpath(ptr ptr ptr ptr ptr)
444 stdcall GdipPathIterNextSubpathPath(ptr ptr ptr ptr)
445 stdcall GdipPathIterRewind(ptr)
446 st
ub GdipPlayMetafileRecord
446 st
dcall GdipPlayMetafileRecord(ptr long long long ptr)
447 stdcall GdipPrivateAddFontFile(ptr wstr)
448 stdcall GdipPrivateAddMemoryFont(ptr ptr long)
449 stdcall GdipRecordMetafile(long long ptr long wstr ptr)
...
...
dlls/gdiplus/metafile.c
View file @
fd747554
...
...
@@ -327,6 +327,14 @@ GpStatus WINGDIPAPI GdipGetHemfFromMetafile(GpMetafile *metafile, HENHMETAFILE *
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipPlayMetafileRecord
(
GDIPCONST
GpMetafile
*
metafile
,
EmfPlusRecordType
recordType
,
UINT
flags
,
UINT
dataSize
,
GDIPCONST
BYTE
*
data
)
{
FIXME
(
"(%p,%x,%x,%d,%p)
\n
"
,
metafile
,
recordType
,
flags
,
dataSize
,
data
);
return
NotImplemented
;
}
struct
enum_metafile_data
{
EnumerateMetafileProc
callback
;
...
...
include/gdiplusflat.h
View file @
fd747554
...
...
@@ -527,6 +527,7 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR*, GDIPCONST Wm
GpStatus
WINGDIPAPI
GdipCreateMetafileFromFile
(
GDIPCONST
WCHAR
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipCreateMetafileFromStream
(
IStream
*
,
GpMetafile
**
);
GpStatus
WINGDIPAPI
GdipGetHemfFromMetafile
(
GpMetafile
*
,
HENHMETAFILE
*
);
GpStatus
WINGDIPAPI
GdipPlayMetafileRecord
(
GDIPCONST
GpMetafile
*
,
EmfPlusRecordType
,
UINT
,
UINT
,
GDIPCONST
BYTE
*
);
GpStatus
WINGDIPAPI
GdipSetMetafileDownLevelRasterizationLimit
(
GpMetafile
*
,
UINT
);
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