-----Original Message----- Message: 1 Date: Thu, 17 Jul 2003 08:37:08 -0700 (PDT) From: Jon Griffiths <jon_p_griffiths(a)yahoo.com> Subject: Sync(2): oleaut32 I1 funcs To: wine-patches(a)winehq.com, julliard(a)winehq.com Reply-To: wine-devel(a)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