mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[VCRUNTIME] Fix eh.h
This commit is contained in:
parent
b75d476bb7
commit
fb49e9126e
1 changed files with 2 additions and 2 deletions
|
@ -24,10 +24,10 @@ typedef void (__cdecl *unexpected_handler)(void);
|
||||||
struct _EXCEPTION_POINTERS;
|
struct _EXCEPTION_POINTERS;
|
||||||
typedef void (__cdecl *_se_translator_function)(unsigned int,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 void __cdecl unexpected(void);
|
||||||
_CRTIMP int __cdecl _is_exception_typeof(const type_info &_Type,struct _EXCEPTION_POINTERS *_ExceptionPtr);
|
_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);
|
extern "C" _CRTIMP terminate_function __cdecl _get_terminate(void);
|
||||||
_CRTIMP unexpected_function __cdecl set_unexpected(unexpected_function _NewPtFunc);
|
_CRTIMP unexpected_function __cdecl set_unexpected(unexpected_function _NewPtFunc);
|
||||||
extern "C" _CRTIMP unexpected_function __cdecl _get_unexpected(void);
|
extern "C" _CRTIMP unexpected_function __cdecl _get_unexpected(void);
|
||||||
|
|
Loading…
Reference in a new issue