Hi,
Update the comment sample to something that generates reasonable
output.
Cheers,
Jon
License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+DEVELOPERS-HINTS
Improve the sample comment.
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
--- wine/DEVELOPERS-HINTS Fri Jul 4 17:45:10 2003
+++ wine-develop/DEVELOPERS-HINTS Thu Jul 17 23:20:54 2003
@@ -222,17 +222,18 @@
/************************************************************
* PolyBezierTo (GDI32.269)
*
- * Draw many Bezier curves
+ * Draw many Bezier curves.
*
* RETURNS
- * nonzero on success or zero on faillure
+ * Success: Non-zero.
+ * Failure: FALSE. Use GetLastError() to find the error cause.
*
* BUGS
* Unimplemented
*/
- BOOL WINAPI PolyBezierTo(HDC hdc, /* handle to device context */
- LPCVOID p, /* ptr to array of Point structs */
- DWORD count /* nr of points in array */
+ BOOL WINAPI PolyBezierTo(HDC hdc, /* [In] Device context to draw to */
+ LPCVOID p, /* [In] Array of POINT structs */
+ DWORD count /* [In] Number of points in p */
)
{
/* tell the user they've got a substandard implementation */