Commit 852e0457 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

msvcr110: Forward __crtSetUnhandledExceptionFilter to kernel32.SetUnhandledExceptionFilter.

parent 758911a8
...@@ -39,3 +39,8 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved) ...@@ -39,3 +39,8 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
} }
return TRUE; return TRUE;
} }
LPTOP_LEVEL_EXCEPTION_FILTER CDECL MSVCR110__crtSetUnhandledExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER filter)
{
return SetUnhandledExceptionFilter(filter);
}
...@@ -928,7 +928,7 @@ ...@@ -928,7 +928,7 @@
@ stub -arch=i386,win64 __crtLCMapStringEx @ stub -arch=i386,win64 __crtLCMapStringEx
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW @ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee @ stub -arch=i386,win64 __crtSetThreadStackGuarantee
@ stub __crtSetUnhandledExceptionFilter @ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ stub -arch=i386,win64 __crtTerminateProcess @ stub -arch=i386,win64 __crtTerminateProcess
@ stub -arch=i386,win64 __crtUnhandledException @ stub -arch=i386,win64 __crtUnhandledException
@ cdecl __daylight() msvcrt.__daylight @ cdecl __daylight() msvcrt.__daylight
......
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