Move Bezier code out of x11drv into commmon GDI code; if any driver
does not implement PolyBezier[To] the curve is approximated to lines
and drawn with Polyline.
Implement many GDI-Path recording functions (at least the win9x subset).
Implement FlattenPath and FillPath.

diff --git a/include/path.h b/include/path.h
index 9b34e71..c75d356 100644
--- a/include/path.h
+++ b/include/path.h
@@ -51,6 +51,14 @@
 extern BOOL PATH_Arc(HDC hdc, INT x1, INT y1, INT x2, INT y2,
    INT xStart, INT yStart, INT xEnd, INT yEnd);
 extern BOOL PATH_PolyBezierTo(HDC hdc, const POINT *pt, DWORD cbCount);
+extern BOOL PATH_PolyBezier(HDC hdc, const POINT *pt, DWORD cbCount);
+extern BOOL PATH_PolylineTo(HDC hdc, const POINT *pt, DWORD cbCount);
+extern BOOL PATH_Polyline(HDC hdc, const POINT *pt, DWORD cbCount);
+extern BOOL PATH_Polygon(HDC hdc, const POINT *pt, DWORD cbCount);
+extern BOOL PATH_PolyPolyline(HDC hdc, const POINT *pt, const DWORD *counts,
+			      DWORD polylines);
+extern BOOL PATH_PolyPolygon(HDC hdc, const POINT *pt, const INT *counts,
+			     UINT polygons);
 #endif /* __WINE_PATH_H */