Author: jgardou Date: Thu Dec 13 16:02:04 2012 New Revision: 57906
URL: http://svn.reactos.org/svn/reactos?rev=57906&view=rev Log: [OLE32_WINETEST] - Addendum to r57905 Both of them already sent upstream
Modified: trunk/rostests/winetests/ole32/propvariant.c
Modified: trunk/rostests/winetests/ole32/propvariant.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ole32/propvarian... ============================================================================== --- trunk/rostests/winetests/ole32/propvariant.c [iso-8859-1] (original) +++ trunk/rostests/winetests/ole32/propvariant.c [iso-8859-1] Thu Dec 13 16:02:04 2012 @@ -255,17 +255,17 @@ } PMemoryAllocator;
#ifdef __i386__ -#define __thiscall __stdcall +#define __thiscall_wrapper __stdcall #else -#define __thiscall __cdecl +#define __thiscall_wrapper __cdecl #endif
-static void * __thiscall PMemoryAllocator_Allocate(PMemoryAllocator *_this, ULONG cbSize) +static void * __thiscall_wrapper PMemoryAllocator_Allocate(PMemoryAllocator *_this, ULONG cbSize) { return CoTaskMemAlloc(cbSize); }
-static void __thiscall PMemoryAllocator_Free(PMemoryAllocator *_this, void *pv) +static void __thiscall_wrapper PMemoryAllocator_Free(PMemoryAllocator *_this, void *pv) { CoTaskMemFree(pv); }