Improve the sample comment.
This commit is contained in:
parent
839131f600
commit
f554f8f58f
|
@ -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
|
||||||
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".
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue