X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4c2d8a30f69e72a7b41473ced06026d8695f4b59..19701d22df4df1000fb7aecd76e95594724521a3:/Mingw32-gcc295.patches diff --git a/Mingw32-gcc295.patches b/Mingw32-gcc295.patches index 5de827a2ce..c0d643fd8f 100644 --- a/Mingw32-gcc295.patches +++ b/Mingw32-gcc295.patches @@ -75,8 +75,7 @@ STDMETHOD(GetTypeInfo)(THIS_ UINT,LCID,LPTYPEINFO*) PURE; ! STDMETHOD(GetIDsOfNames)(THIS_ REFIID,LPOLESTR*,UINT,LCID,DISPID) PURE; -! STDMETHOD(Invoked)(THIS_ -DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; +! STDMETHOD(Invoked)(THIS_ DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; }; #ifdef __cplusplus @@ -86,8 +85,7 @@ DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; STDMETHOD(GetTypeInfo)(THIS_ UINT,LCID,LPTYPEINFO*) PURE; ! STDMETHOD(GetIDsOfNames)(THIS_ REFIID,LPOLESTR*,UINT,LCID,DISPID*) PURE; -! STDMETHOD(Invoke)(THIS_ -DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; +! STDMETHOD(Invoke)(THIS_ DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; }; #ifdef __cplusplus @@ -114,5 +112,33 @@ DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*) PURE; STDMETHOD(EnumDAdvise)(THIS_ IEnumSTATDATA**); +--- i386-mingw32\include\stdio.h Sun Aug 1 06:18:20 1999 ++++ stdio.h Sun Nov 7 03:41:40 1999 +@@ -203,9 +203,12 @@ + int fprintf (FILE* filePrintTo, const char* szFormat, ...); + int printf (const char* szFormat, ...); + int sprintf (char* caBuffer, const char* szFormat, ...); ++int _snprintf (char* caBuffer, size_t n, const char* szFormat, ...); + int vfprintf (FILE* filePrintTo, const char* szFormat, va_list varg); + int vprintf (const char* szFormat, va_list varg); + int vsprintf (char* caBuffer, const char* szFormat, va_list varg); ++int _vsnprintf (char* caBuffer, size_t n, const char* szFormat, ++ va_list varg); + /* Wide character versions */ + int fwprintf (FILE* filePrintTo, const wchar_t* wsFormat, ...); + + + +--- i386-mingw32\include\winbase.h Sat Jul 31 17:48:48 1999 ++++ winbase.h Fri Feb 25 01:49:08 2000 +@@ -989,7 +989,7 @@ + BOOL WINAPI CopyFileExW(LPCWSTR,LPCWSTR,LPPROGRESS_ROUTINE,LPVOID,LPBOOL,DWORD); + #define RtlMoveMemory memmove + #define RtlCopyMemory memcpy +-#define RtlFillMemory memset ++#define RtlFillMemory(d,l,f) memset ((d),(f),(l)) + #define RtlZeroMemory(d,l) memset((d),0,(l)) + #define MoveMemory RtlMoveMemory + #define CopyMemory RtlCopyMemory