Commit fd747554 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Stub GdipPlayMetafileRecord.

parent a26c5f9b
......@@ -443,7 +443,7 @@
443 stdcall GdipPathIterNextSubpath(ptr ptr ptr ptr ptr)
444 stdcall GdipPathIterNextSubpathPath(ptr ptr ptr ptr)
445 stdcall GdipPathIterRewind(ptr)
446 stub GdipPlayMetafileRecord
446 stdcall 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)
......
......@@ -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;
......
......@@ -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**);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment