17 Aug
2010
17 Aug
'10
7:29 a.m.
Piotr Caban <piotr(a)codeweavers.com> writes:
@@ -35,6 +35,12 @@ char* __stdcall MSVCP_allocator_char_address(void *this, char *ptr) return ptr; }
+/* ?address@?$allocator(a)D@std@@QEBAPEADAEAD(a)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(a)winehq.org