Re: [PATCH 1/4] msvcp90: Added allocator<char> 64-bit exports
17 Aug
2010
17 Aug
'10
12:29 p.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
5603
Age (days ago)
5603
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard