Vincent Povirk : gdiplus: Stub GdipRecordMetafile.

Alexandre Julliard julliard at winehq.org
Mon Jul 5 12:09:58 CDT 2010


Module: wine
Branch: master
Commit: 48ceb3d67fc82ea7166aad91b8417dd7e1581ac4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=48ceb3d67fc82ea7166aad91b8417dd7e1581ac4

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Sat Jun 19 17:27:22 2010 -0500

gdiplus: Stub GdipRecordMetafile.

---

 dlls/gdiplus/gdiplus.spec |    2 +-
 dlls/gdiplus/graphics.c   |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec
index bf0de64..fa89ae2 100644
--- a/dlls/gdiplus/gdiplus.spec
+++ b/dlls/gdiplus/gdiplus.spec
@@ -466,7 +466,7 @@
 @ stub GdipPlayTSClientRecord
 @ stdcall GdipPrivateAddFontFile(ptr wstr)
 @ stdcall GdipPrivateAddMemoryFont(ptr ptr long)
-@ stub GdipRecordMetafile
+@ stdcall GdipRecordMetafile(long long ptr long wstr ptr)
 @ stdcall GdipRecordMetafileFileName(wstr long long ptr long wstr ptr)
 @ stdcall GdipRecordMetafileFileNameI(wstr long long ptr long wstr ptr)
 @ stdcall GdipRecordMetafileI(long long ptr long wstr ptr)
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 5fed017..bfd3a2a 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -4731,6 +4731,13 @@ GpStatus WINGDIPAPI GdipDrawDriverString(GpGraphics *graphics, GDIPCONST UINT16
     return NotImplemented;
 }
 
+GpStatus WINGDIPAPI GdipRecordMetafile(HDC hdc, EmfType type, GDIPCONST GpRectF *frameRect,
+                                       MetafileFrameUnit frameUnit, GDIPCONST WCHAR *desc, GpMetafile **metafile)
+{
+    FIXME("(%p %d %p %d %p %p): stub\n", hdc, type, frameRect, frameUnit, desc, metafile);
+    return NotImplemented;
+}
+
 /*****************************************************************************
  * GdipRecordMetafileI [GDIPLUS.@]
  */




More information about the wine-cvs mailing list