gdiplus: Implemented GdipCreatePath and GdipDeletePath.
diff --git a/include/gdiplusgpstubs.h b/include/gdiplusgpstubs.h
index 727ca06..6e283d8 100644
--- a/include/gdiplusgpstubs.h
+++ b/include/gdiplusgpstubs.h
@@ -25,6 +25,7 @@
 class GpGraphics {};
 class GpBrush {};
 class GpSolidFill {};
+class GpPath {};
 
 #else /* end of c++ declarations */
 
@@ -32,6 +33,7 @@
 typedef struct GpPen GpPen;
 typedef struct GpBrush GpBrush;
 typedef struct GpSolidFill GpSolidFill;
+typedef struct GpPath GpPath;
 
 #endif /* end of c declarations */
 
@@ -39,5 +41,7 @@
 typedef Unit GpUnit;
 typedef BrushType GpBrushType;
 typedef PointF GpPointF;
+typedef FillMode GpFillMode;
+typedef PathData GpPathData;
 
 #endif