#include <corecrt.h>
#include <pshpack8.h>
#include <poppack.h>
Go to the source code of this file.
◆ _se_translator_function
Definition at line 37 of file eh.h.
◆ terminate_function
Definition at line 34 of file eh.h.
◆ terminate_handler
Definition at line 33 of file eh.h.
◆ unexpected_function
Definition at line 36 of file eh.h.
◆ unexpected_handler
Definition at line 35 of file eh.h.
◆ set_se_translator()
◆ 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)
thread_data_t *CDECL msvcrt_get_thread_data(void)
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ 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)
◆ terminate()
Definition at line 698 of file cpp.c.
699{
701 if (
data->terminate_handler)
data->terminate_handler();
703}
◆ unexpected()
Definition at line 708 of file cpp.c.
709{
711 if (
data->unexpected_handler)
data->unexpected_handler();
713}
void CDECL terminate(void)