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 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)
thread_data_t *CDECL msvcrt_get_thread_data(void)
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
◆ 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)
◆ 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)