Commit f554f8f5 authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Improve the sample comment.

parent 839131f6
...@@ -222,17 +222,18 @@ into a stub: ...@@ -222,17 +222,18 @@ into a stub:
/************************************************************ /************************************************************
* PolyBezierTo (GDI32.269) * PolyBezierTo (GDI32.269)
* *
* Draw many Bezier curves * Draw many Bezier curves.
* *
* RETURNS * RETURNS
* nonzero on success or zero on faillure * Success: Non-zero.
* Failure: FALSE. Use GetLastError() to find the error cause.
* *
* BUGS * BUGS
* Unimplemented * Unimplemented
*/ */
BOOL WINAPI PolyBezierTo(HDC hdc, /* handle to device context */ BOOL WINAPI PolyBezierTo(HDC hdc, /* [In] Device context to draw to */
LPCVOID p, /* ptr to array of Point structs */ LPCVOID p, /* [In] Array of POINT structs */
DWORD count /* nr of points in array */ DWORD count /* [In] Number of points in p */
) )
{ {
/* tell the user they've got a substandard implementation */ /* tell the user they've got a substandard implementation */
...@@ -515,5 +516,3 @@ MORE INFO ...@@ -515,5 +516,3 @@ MORE INFO
3. http://www.sonic.net/~undoc/bookstore.html 3. http://www.sonic.net/~undoc/bookstore.html
4. In 1993 Dr. Dobbs Journal published a column called "Undocumented Corner". 4. In 1993 Dr. Dobbs Journal published a column called "Undocumented Corner".
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment