CDC::PolyBezierTo
Visual Studio 2010
Draws one or more Bzier splines.
BOOL PolyBezierTo( const POINT* lpPoints, int nCount );
This function draws cubic Bzier splines by using the control points specified by the lpPoints parameter. The first spline is drawn from the current position to the third point by using the first two points as control points. For each subsequent spline, the function needs exactly three more points, and uses the end point of the previous spline as the starting point for the next. PolyBezierTo moves the current position to the end point of the last Bzier spline. The figure is not filled. This function draws lines by using the current pen.
See the example for CDC::BeginPath.