mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 03:23:34 +08:00
[VCRUNTIME] Fix eh.h
This commit is contained in:
parent
b75d476bb7
commit
fb49e9126e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user