msvcr110: Forward __crtSetUnhandledExceptionFilter to kernel32.SetUnhandledExceptionFilter.
This commit is contained in:
parent
758911a8da
commit
852e0457aa
|
@ -39,3 +39,8 @@ BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
|
|||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
LPTOP_LEVEL_EXCEPTION_FILTER CDECL MSVCR110__crtSetUnhandledExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER filter)
|
||||
{
|
||||
return SetUnhandledExceptionFilter(filter);
|
||||
}
|
||||
|
|
|
@ -928,7 +928,7 @@
|
|||
@ stub -arch=i386,win64 __crtLCMapStringEx
|
||||
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
|
||||
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
|
||||
@ stub __crtSetUnhandledExceptionFilter
|
||||
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
|
||||
@ stub -arch=i386,win64 __crtTerminateProcess
|
||||
@ stub -arch=i386,win64 __crtUnhandledException
|
||||
@ cdecl __daylight() msvcrt.__daylight
|
||||
|
|
Loading…
Reference in New Issue