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