gdiplus: Added GdipCreateMetafileFromWmf stub.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index a29d3a1..f53ea4c 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -818,6 +818,20 @@
     return NotImplemented;
 }
 
+GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
+    GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
+{
+    static int calls;
+
+    if(!hwmf || !metafile || !placeable)
+        return InvalidParameter;
+
+    if(!(calls++))
+        FIXME("not implemented\n");
+
+    return NotImplemented;
+}
+
 GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
 {
     if(!graphics) return InvalidParameter;