Fixes several bugs in gdi path handling.
Adds *Path functions to dc funcs table + add EnhMetaFile recording.
Separate out Polylne/PolylineTo and PolyBezier/PolyBezierTo in dc
funcs table to enable proper enhmetafile recording.
The current position update in *To functions is now handled by the
main function and not in the drivers.
Move USER functions from graphics/painting.c -> windows/painting.c

diff --git a/include/path.h b/include/path.h
index b1b31fb..9b34e71 100644
--- a/include/path.h
+++ b/include/path.h
@@ -50,5 +50,7 @@
    INT x2, INT y2);
 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);
 #endif /* __WINE_PATH_H */
+
+