[VCRUNTIME] Fix eh.h

This commit is contained in:
Timo Kreuzer 2024-10-11 15:31:56 +02:00
parent b75d476bb7
commit fb49e9126e

View File

@ -24,10 +24,10 @@ typedef void (__cdecl *unexpected_handler)(void);
struct _EXCEPTION_POINTERS;
typedef void (__cdecl *_se_translator_function)(unsigned int,struct _EXCEPTION_POINTERS *);
_CRTIMP __declspec(noreturn) void __cdecl terminate(void);
_CRTIMP __declspec(noreturn) void __cdecl terminate(void) throw();
_CRTIMP void __cdecl unexpected(void);
_CRTIMP int __cdecl _is_exception_typeof(const type_info &_Type,struct _EXCEPTION_POINTERS *_ExceptionPtr);
_CRTIMP terminate_function __cdecl set_terminate(terminate_function _NewPtFunc);
_CRTIMP terminate_function __cdecl set_terminate(terminate_function _NewPtFunc) throw();
extern "C" _CRTIMP terminate_function __cdecl _get_terminate(void);
_CRTIMP unexpected_function __cdecl set_unexpected(unexpected_function _NewPtFunc);
extern "C" _CRTIMP unexpected_function __cdecl _get_unexpected(void);