Go to the source code of this file.
◆ _se_translator_function
Definition at line 29 of file eh.h.
◆ terminate_function
Definition at line 23 of file eh.h.
◆ terminate_handler
Definition at line 24 of file eh.h.
◆ unexpected_function
Definition at line 25 of file eh.h.
◆ unexpected_handler
Definition at line 26 of file eh.h.
◆ __declspec()
_CRTIMP __declspec |
( |
noreturn |
| ) |
|
throw | ( | |
| ) | | |
◆ __uncaught_exception()
Definition at line 299 of file except.c.
300{
302}
thread_data_t * msvcrt_get_thread_data(void)
◆ _get_terminate()
Definition at line 654 of file cpp.c.
655{
657 TRACE(
"returning %p\n",
data->terminate_handler);
658 return data->terminate_handler;
659}
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ _get_unexpected()
Definition at line 684 of file cpp.c.
685{
687 TRACE(
"returning %p\n",
data->unexpected_handler);
688 return data->unexpected_handler;
689}
◆ _is_exception_typeof()
◆ _set_se_translator()
Definition at line 694 of file cpp.c.
695{
698 TRACE(
"(%p) returning %p\n",
func,previous);
700 return previous;
701}
void(__cdecl * _se_translator_function)(unsigned int, struct _EXCEPTION_POINTERS *)
◆ set_terminate()
Definition at line 642 of file cpp.c.
643{
646 TRACE(
"(%p) returning %p\n",
func,previous);
648 return previous;
649}
void(__cdecl * terminate_function)(void)
Referenced by main(), and Terminate1().
◆ set_unexpected()
Definition at line 672 of file cpp.c.
673{
676 TRACE(
"(%p) returning %p\n",
func,previous);
678 return previous;
679}
void(__cdecl * unexpected_function)(void)
◆ unexpected()
Definition at line 726 of file cpp.c.
727{
729 if (
data->unexpected_handler)
data->unexpected_handler();
731}
void CDECL terminate(void)