From: Guillermo Rodriguez Garcia Date: Mon, 28 Feb 2000 15:05:18 +0000 (+0000) Subject: Added fix for mingw32 gcc-2.95 regarding FillMemory X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dc6eda546bcbd2f737ee6ded4973a8c5a5d40427 Added fix for mingw32 gcc-2.95 regarding FillMemory git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/Mingw32-gcc295.patches b/Mingw32-gcc295.patches index ab44761a4e..c0d643fd8f 100644 --- a/Mingw32-gcc295.patches +++ b/Mingw32-gcc295.patches @@ -129,3 +129,16 @@ PURE; 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 +