Go to the source code of this file.
◆ __WINE_USE_MSVCRT
Definition at line 23 of file eh.h.
◆ MSVCRT
Definition at line 34 of file eh.h.
◆ _se_translator_function
Definition at line 44 of file eh.h.
◆ terminate_function
| typedef void(* terminate_function) () |
Definition at line 41 of file eh.h.
◆ terminate_handler
| typedef void(* terminate_handler) () |
Definition at line 40 of file eh.h.
◆ unexpected_function
| typedef void(* unexpected_function) () |
Definition at line 43 of file eh.h.
◆ unexpected_handler
| typedef void(* unexpected_handler) () |
Definition at line 42 of file eh.h.
◆ _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)
thread_data_t *CDECL msvcrt_get_thread_data(void)
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ 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)
Referenced by main(), and Terminate1().
◆ 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)