fix the DEVELOPER-HINTS file to reflect how things are really done

Mike McCormack mike at codeweavers.com
Fri Jan 21 01:54:29 CST 2005


ChangeLog:
* fix the DEVELOPER-HINTS file to reflect how things are really done
-------------- next part --------------
Index: DEVELOPERS-HINTS
===================================================================
RCS file: /home/wine/wine/DEVELOPERS-HINTS,v
retrieving revision 1.52
diff -u -p -r1.52 DEVELOPERS-HINTS
--- DEVELOPERS-HINTS	30 Nov 2004 17:23:37 -0000	1.52
+++ DEVELOPERS-HINTS	21 Jan 2005 07:53:59 -0000
@@ -288,7 +288,7 @@ into a stub:
     put in a stub.
 
   /************************************************************
-   *                    PolyBezierTo   (GDI32.269)  
+   *                    PolyBezierTo   [GDI32.@]
    *  
    * Draw many Bezier curves.
    *
@@ -304,17 +304,17 @@ into a stub:
    * BUGS
    *   Unimplemented
    */
-   BOOL WINAPI PolyBezierTo(HDC hdc, LPCVOID p, DWORD count) 
-   {
-       /* tell the user they've got a substandard implementation */
-       FIXME("(%x,%p,%d): stub\n", hdc, p, count);
+  BOOL WINAPI PolyBezierTo(HDC hdc, const POINT *p, DWORD count) 
+  {
+      /* tell the user they've got a substandard implementation */
+      FIXME("%p %p %ld\n", hdc, p, count);
 
-       /* some programs may be able to compensate, 
-        * if they know what happened 
-        */
-       SetLastError(ERROR_CALL_NOT_IMPLEMENTED);  
-       return FALSE;    /* error value */
-   }
+      /* some programs may be able to compensate, 
+       * if they know what happened 
+       */
+      SetLastError(ERROR_CALL_NOT_IMPLEMENTED);  
+      return FALSE;    /* error value */
+  }
 
 4. Implement and test the rest of the function.
 


More information about the wine-patches mailing list