[PATCH 1/4] msvcp90: Added allocator<char> 64-bit exports

Alexandre Julliard julliard at winehq.org
Tue Aug 17 07:29:36 CDT 2010


Piotr Caban <piotr at codeweavers.com> writes:

> @@ -35,6 +35,12 @@ char* __stdcall MSVCP_allocator_char_address(void *this, char *ptr)
>      return ptr;
>  }
>  
> +/* ?address@?$allocator at D@std@@QEBAPEADAEAD at Z */
> +char* __cdecl MSVCP64_allocator_char_address(void *this, char *ptr)
> +{
> +    return MSVCP_allocator_char_address(this, ptr);
> +}
> +

stdcall and cdecl are equivalent on 64-bit, so you don't need the extra
wrappers.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list