msvcm80: Add __setusermatherr_m stub.

This commit is contained in:
Vincent Povirk 2012-05-04 10:51:57 -05:00 committed by Alexandre Julliard
parent de012d0be6
commit eb29d87053
2 changed files with 8 additions and 1 deletions

View file

@ -300,7 +300,7 @@
@ stub -arch=win64 ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z
@ stub ?signal@@YAP6MXH@ZHH@Z
@ stub ?signal@@YAP6MXH@ZHP6MXH@Z@Z
@ stub __setusermatherr_m
@ cdecl __setusermatherr_m(ptr)
@ stub towctrans
@ stub wctrans
@ stub wctype

View file

@ -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);
}