Stefan Leichter : msvcp100/tests: Fix dynamically loaded functions for platform arm.

Alexandre Julliard julliard at winehq.org
Thu Jun 20 15:31:16 CDT 2013


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

Author: Stefan Leichter <Stefan.Leichter at camline.com>
Date:   Wed Jun 19 23:04:36 2013 +0200

msvcp100/tests: Fix dynamically loaded functions for platform arm.

---

 dlls/msvcp100/tests/string.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/dlls/msvcp100/tests/string.c b/dlls/msvcp100/tests/string.c
index b33b145..5fb2003 100644
--- a/dlls/msvcp100/tests/string.c
+++ b/dlls/msvcp100/tests/string.c
@@ -100,11 +100,19 @@ static BOOL init(void)
         SET(_Yarn_char_c_str, "?_C_str@?$_Yarn at D@std@@QEBAPEBDXZ");
         SET(_Yarn_char_empty, "?_Empty@?$_Yarn at D@std@@QEBA_NXZ");
     }else {
+#ifdef __arm__
+        SET(_Yarn_char_ctor_cstr, "??0?$_Yarn at D@std@@QAA at PBD@Z");
+        SET(_Yarn_char_copy_ctor, "??0?$_Yarn at D@std@@QAA at ABV01@@Z");
+        SET(_Yarn_char_dtor, "??1?$_Yarn at D@std@@QAA at XZ");
+        SET(_Yarn_char_c_str, "?_C_str@?$_Yarn at D@std@@QBAPBDXZ");
+        SET(_Yarn_char_empty, "?_Empty@?$_Yarn at D@std@@QBA_NXZ");
+#else
         SET(_Yarn_char_ctor_cstr, "??0?$_Yarn at D@std@@QAE at PBD@Z");
         SET(_Yarn_char_copy_ctor, "??0?$_Yarn at D@std@@QAE at ABV01@@Z");
         SET(_Yarn_char_dtor, "??1?$_Yarn at D@std@@QAE at XZ");
         SET(_Yarn_char_c_str, "?_C_str@?$_Yarn at D@std@@QBEPBDXZ");
         SET(_Yarn_char_empty, "?_Empty@?$_Yarn at D@std@@QBE_NXZ");
+#endif /* __arm__ */
     }
 
     init_thiscall_thunk();




More information about the wine-cvs mailing list