#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 625 of file cpp.c.
626{
629 TRACE(
"(%p) returning %p\n",
func,previous);
631 return previous;
632}
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 656 of file cpp.c.
657{
660 TRACE(
"(%p) returning %p\n",
func,previous);
662 return previous;
663}
void(__cdecl * unexpected_function)(void)
◆ terminate()
Definition at line 701 of file cpp.c.
702{
704 if (
data->terminate_handler)
data->terminate_handler();
706}
◆ unexpected()
Definition at line 711 of file cpp.c.
712{
714 if (
data->unexpected_handler)
data->unexpected_handler();
716}
void CDECL terminate(void)