-----Original Message----- Message: 1 Date: Thu, 17 Jul 2003 08:37:08 -0700 (PDT) From: Jon Griffiths jon_p_griffiths@yahoo.com Subject: Sync(2): oleaut32 I1 funcs To: wine-patches@winehq.com, julliard@winehq.com Reply-To: wine-devel@winehq.com
-HRESULT WINAPI SetErrorInfo(ULONG dwReserved, IErrorInfo *perrinfo); -HRESULT WINAPI GetErrorInfo(ULONG dwReserved, IErrorInfo **pperrinfo); -HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo); +HRESULT WINAPI SetErrorInfo(ULONG,IErrorInfo*); +HRESULT WINAPI GetErrorInfo(ULONG,IErrorInfo**); +HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo**);
Is there any reason for stripping out the parameter names from this file? They can be quite useful as a reminder for what each parameter is.
P.S. In other parts of your patch you replaced char with signed char. Is signed char != char?
Rob