#include <corecrt.h>
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 825 of file except.c.
826{
828}
thread_data_t *CDECL msvcrt_get_thread_data(void)
◆ _get_terminate()
Definition at line 637 of file cpp.c.
638{
640 TRACE(
"returning %p\n",
data->terminate_handler);
641 return data->terminate_handler;
642}
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ _get_unexpected()
Definition at line 668 of file cpp.c.
669{
671 TRACE(
"returning %p\n",
data->unexpected_handler);
672 return data->unexpected_handler;
673}
◆ _is_exception_typeof()
◆ _set_se_translator()
Definition at line 678 of file cpp.c.
679{
682 TRACE(
"(%p) returning %p\n",
func,previous);
684 return previous;
685}
void(__cdecl * _se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info)
◆ set_terminate()
Definition at line 625 of file cpp.c.
626{
629 TRACE(
"(%p) returning %p\n",
func,previous);
631 return previous;
632}
void(__cdecl * terminate_function)(void)
Referenced by main(), and Terminate1().
◆ set_unexpected()
Definition at line 656 of file cpp.c.
657{
660 TRACE(
"(%p) returning %p\n",
func,previous);
662 return previous;
663}
void(__cdecl * unexpected_function)(void)
◆ unexpected()
Definition at line 711 of file cpp.c.
712{
714 if (
data->unexpected_handler)
data->unexpected_handler();
716}
void CDECL terminate(void)