Commit a5031391 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcr: Add __crtUnhandledException implementation.

parent 2f9941e2
......@@ -930,7 +930,7 @@
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
@ stub -arch=i386,win64 __crtUnhandledException
@ cdecl -arch=i386,win64 __crtUnhandledException(ptr) MSVCRT__crtUnhandledException
@ cdecl __daylight() MSVCRT___p__daylight
@ cdecl __dllonexit(ptr ptr ptr)
@ cdecl __doserrno() MSVCRT___doserrno
......
......@@ -920,7 +920,7 @@
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
@ stub __crtSleep
@ stub -arch=i386,win64 __crtUnhandledException
@ cdecl -arch=i386,win64 __crtUnhandledException(ptr) MSVCRT__crtUnhandledException
@ cdecl __daylight() MSVCRT___p__daylight
@ cdecl __dllonexit(ptr ptr ptr)
@ cdecl __doserrno() MSVCRT___doserrno
......
......@@ -532,3 +532,13 @@ void CDECL MSVCRT__crt_debugger_hook(int reserved)
{
WARN("(%x)\n", reserved);
}
/*********************************************************************
* __crtUnhandledException (MSVCR110.@)
*/
LONG CDECL MSVCRT__crtUnhandledException(EXCEPTION_POINTERS *ep)
{
TRACE("(%p)\n", ep);
SetUnhandledExceptionFilter(NULL);
return UnhandledExceptionFilter(ep);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment