gdiplus: Added GdipCreateMetafileFromEmf stub.
diff --git a/include/gdiplusflat.h b/include/gdiplusflat.h
index 1143195..e493df5 100644
--- a/include/gdiplusflat.h
+++ b/include/gdiplusflat.h
@@ -46,6 +46,7 @@
GpStatus WINGDIPAPI GdipCreateFromHDC(HDC,GpGraphics**);
GpStatus WINGDIPAPI GdipCreateFromHWND(HWND,GpGraphics**);
+GpStatus WINGDIPAPI GdipCreateMetafileFromEmf(HENHMETAFILE,BOOL,GpMetafile**);
GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *);
GpStatus WINGDIPAPI GdipDrawArc(GpGraphics*,GpPen*,REAL,REAL,REAL,REAL,REAL,REAL);
GpStatus WINGDIPAPI GdipDrawBezier(GpGraphics*,GpPen*,REAL,REAL,REAL,REAL,REAL,
diff --git a/include/gdiplusgpstubs.h b/include/gdiplusgpstubs.h
index 70da065..9d57648 100644
--- a/include/gdiplusgpstubs.h
+++ b/include/gdiplusgpstubs.h
@@ -29,6 +29,8 @@
class GpMatrix {};
class GpPathIterator {};
class GpCustomLineCap {};
+class GpImage {};
+class GpMetafile : public GpImage {};
#else /* end of c++ declarations */
@@ -40,6 +42,8 @@
typedef struct GpMatrix GpMatrix;
typedef struct GpPathIterator GpPathIterator;
typedef struct GpCustomLineCap GpCustomLineCap;
+typedef struct GpImage GpImage;
+typedef struct GpMetafile GpMetafile;
#endif /* end of c declarations */