Vincent Povirk : msvcm80: Add __setusermatherr_m stub.

Alexandre Julliard julliard at winehq.org
Mon May 7 14:29:26 CDT 2012


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

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Fri May  4 10:51:57 2012 -0500

msvcm80: Add __setusermatherr_m stub.

---

 dlls/msvcm80/msvcm80.spec   |    2 +-
 dlls/msvcm80/msvcm80_main.c |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcm80/msvcm80.spec b/dlls/msvcm80/msvcm80.spec
index 5c72393..86e50bf 100644
--- a/dlls/msvcm80/msvcm80.spec
+++ b/dlls/msvcm80/msvcm80.spec
@@ -300,7 +300,7 @@
 @ stub -arch=win64 ?setw at std@@YA?AU?$_Smanip at _J@1 at _J@Z
 @ stub ?signal@@YAP6MXH at ZHH@Z
 @ stub ?signal@@YAP6MXH at ZHP6MXH@Z at Z
-@ stub __setusermatherr_m
+@ cdecl __setusermatherr_m(ptr)
 @ stub towctrans
 @ stub wctrans
 @ stub wctype
diff --git a/dlls/msvcm80/msvcm80_main.c b/dlls/msvcm80/msvcm80_main.c
index bf5d637..0dd94ca 100644
--- a/dlls/msvcm80/msvcm80_main.c
+++ b/dlls/msvcm80/msvcm80_main.c
@@ -49,3 +49,10 @@ void __cdecl CrtImplementationDetails_RegisterModuleUninitializer(void* handler)
 {
     FIXME("%p: stub\n", handler);
 }
+
+/* handler is a "method" with signature int32 (*handler)(_exception*), but I'm
+ * not sure what that means */
+void __cdecl __setusermatherr_m(void *handler)
+{
+    FIXME("%p: stub\n", handler);
+}




More information about the wine-cvs mailing list