Piotr Caban : msvcp90: Added basic_string<{char, wchar_t}>. data implementation.

Alexandre Julliard julliard at winehq.org
Thu Sep 2 12:01:24 CDT 2010


Module: wine
Branch: master
Commit: 168dabf063962edd5f009014dd1bbe2b53b309bb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=168dabf063962edd5f009014dd1bbe2b53b309bb

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Thu Sep  2 00:34:02 2010 +0200

msvcp90: Added basic_string<{char, wchar_t}>.data implementation.

---

 dlls/msvcp90/msvcp90.spec |    8 ++++----
 dlls/msvcp90/string.c     |    4 ++++
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dlls/msvcp90/msvcp90.spec b/dlls/msvcp90/msvcp90.spec
index 0c522c5..4097ba7 100644
--- a/dlls/msvcp90/msvcp90.spec
+++ b/dlls/msvcp90/msvcp90.spec
@@ -3198,12 +3198,12 @@
 @ stub -arch=win64 ?curr_symbol@?$_Mpunct at G@std@@QEBA?AV?$basic_string at GU?$char_traits at G@std@@V?$allocator at G@2@@2 at XZ
 @ stub -arch=win32 ?curr_symbol@?$_Mpunct at _W@std@@QBE?AV?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@2 at XZ
 @ stub -arch=win64 ?curr_symbol@?$_Mpunct at _W@std@@QEBA?AV?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@2 at XZ
-@ stub -arch=win32 ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QBEPBDXZ
-@ stub -arch=win64 ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QEBAPEBDXZ
+@ thiscall -arch=win32 ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QBEPBDXZ(ptr) MSVCP_basic_string_char_c_str
+@ cdecl -arch=win64 ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QEBAPEBDXZ(ptr) MSVCP_basic_string_char_c_str
 @ stub -arch=win32 ?data@?$basic_string at GU?$char_traits at G@std@@V?$allocator at G@2@@std@@QBEPBGXZ
 @ stub -arch=win64 ?data@?$basic_string at GU?$char_traits at G@std@@V?$allocator at G@2@@std@@QEBAPEBGXZ
-@ stub -arch=win32 ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QBEPB_WXZ
-@ stub -arch=win64 ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QEBAPEB_WXZ
+@ thiscall -arch=win32 ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QBEPB_WXZ(ptr) MSVCP_basic_string_wchar_c_str
+@ cdecl -arch=win64 ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QEBAPEB_WXZ(ptr) MSVCP_basic_string_wchar_c_str
 @ stub -arch=win32 ?date_order@?$time_get at DV?$istreambuf_iterator at DU?$char_traits at D@std@@@std@@@std@@QBE?AW4dateorder at time_base@2 at XZ
 @ stub -arch=win64 ?date_order@?$time_get at DV?$istreambuf_iterator at DU?$char_traits at D@std@@@std@@@std@@QEBA?AW4dateorder at time_base@2 at XZ
 @ stub -arch=win32 ?date_order@?$time_get at GV?$istreambuf_iterator at GU?$char_traits at G@std@@@std@@@std@@QBE?AW4dateorder at time_base@2 at XZ
diff --git a/dlls/msvcp90/string.c b/dlls/msvcp90/string.c
index 15ff025..5b4b11f 100644
--- a/dlls/msvcp90/string.c
+++ b/dlls/msvcp90/string.c
@@ -687,6 +687,8 @@ basic_string_char* __thiscall MSVCP_basic_string_char_assign_cstr(
 
 /* ?c_str@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QBEPBDXZ */
 /* ?c_str@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QEBAPEBDXZ */
+/* ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QBEPBDXZ */
+/* ?data@?$basic_string at DU?$char_traits at D@std@@V?$allocator at D@2@@std@@QEBAPEBDXZ */
 DEFINE_THISCALL_WRAPPER(MSVCP_basic_string_char_c_str, 4)
 const char* __thiscall MSVCP_basic_string_char_c_str(basic_string_char *this)
 {
@@ -933,6 +935,8 @@ basic_string_wchar* __thiscall MSVCP_basic_string_wchar_assign_cstr(
 
 /* ?c_str@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QBEPB_WXZ */
 /* ?c_str@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QEBAPEB_WXZ */
+/* ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QBEPB_WXZ */
+/* ?data@?$basic_string at _WU?$char_traits at _W@std@@V?$allocator at _W@2@@std@@QEBAPEB_WXZ */
 DEFINE_THISCALL_WRAPPER(MSVCP_basic_string_wchar_c_str, 4)
 const wchar_t* __thiscall MSVCP_basic_string_wchar_c_str(basic_string_wchar *this)
 {




More information about the wine-cvs mailing list