#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 821 of file except.c.
822{
824}
thread_data_t *CDECL msvcrt_get_thread_data(void)
◆ _get_terminate()
Definition at line 636 of file cpp.c.
637{
639 TRACE(
"returning %p\n",
data->terminate_handler);
640 return data->terminate_handler;
641}
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ _get_unexpected()
Definition at line 666 of file cpp.c.
667{
669 TRACE(
"returning %p\n",
data->unexpected_handler);
670 return data->unexpected_handler;
671}
◆ _is_exception_typeof()
◆ _set_se_translator()
Definition at line 676 of file cpp.c.
677{
680 TRACE(
"(%p) returning %p\n",
func,previous);
682 return previous;
683}
void(__cdecl * _se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info)
◆ set_terminate()
Definition at line 624 of file cpp.c.
625{
628 TRACE(
"(%p) returning %p\n",
func,previous);
630 return previous;
631}
void(__cdecl * terminate_function)(void)
◆ set_unexpected()
Definition at line 654 of file cpp.c.
655{
658 TRACE(
"(%p) returning %p\n",
func,previous);
660 return previous;
661}
void(__cdecl * unexpected_function)(void)
◆ unexpected()
Definition at line 708 of file cpp.c.
709{
711 if (
data->unexpected_handler)
data->unexpected_handler();
713}
void CDECL terminate(void)