Say that "No handler" messages as fatal.
This commit is contained in:
parent
81d50b1c8a
commit
70668d1a69
|
@ -274,7 +274,7 @@ void RELAY_Unimplemented16(void)
|
||||||
char name[80];
|
char name[80];
|
||||||
STACK16FRAME *frame = CURRENT_STACK16;
|
STACK16FRAME *frame = CURRENT_STACK16;
|
||||||
BUILTIN_GetEntryPoint16( frame, name, &ordinal );
|
BUILTIN_GetEntryPoint16( frame, name, &ordinal );
|
||||||
MESSAGE("No handler for Win16 routine %s (called from %04x:%04x)\n",
|
MESSAGE("FATAL: No handler for Win16 routine %s (called from %04x:%04x)\n",
|
||||||
name, frame->cs, frame->ip );
|
name, frame->cs, frame->ip );
|
||||||
ExitProcess(1);
|
ExitProcess(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -425,7 +425,7 @@ void BUILTIN32_Unimplemented( const char *dllname, const char *funcname )
|
||||||
{
|
{
|
||||||
__RESTORE_ES; /* Just in case */
|
__RESTORE_ES; /* Just in case */
|
||||||
|
|
||||||
MESSAGE( "No handler for Win32 routine %s.%s", dllname, funcname );
|
MESSAGE( "FATAL: No handler for Win32 routine %s.%s", dllname, funcname );
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
MESSAGE( " (called from %p)", __builtin_return_address(1) );
|
MESSAGE( " (called from %p)", __builtin_return_address(1) );
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue