Say that "No handler" messages as fatal.

This commit is contained in:
Ove Kaaven 2000-07-23 13:37:53 +00:00 committed by Alexandre Julliard
parent 81d50b1c8a
commit 70668d1a69
2 changed files with 2 additions and 2 deletions

View file

@ -274,7 +274,7 @@ void RELAY_Unimplemented16(void)
char name[80];
STACK16FRAME *frame = CURRENT_STACK16;
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 );
ExitProcess(1);
}

View file

@ -425,7 +425,7 @@ void BUILTIN32_Unimplemented( const char *dllname, const char *funcname )
{
__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__
MESSAGE( " (called from %p)", __builtin_return_address(1) );
#endif