Commit 50372025 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Make unimplemented function message a bit prettier.

parent b39d8fc2
...@@ -235,11 +235,11 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context ) ...@@ -235,11 +235,11 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
if (rec->ExceptionCode == EXCEPTION_WINE_STUB) if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
{ {
if (HIWORD(rec->ExceptionInformation[1])) if (HIWORD(rec->ExceptionInformation[1]))
FIXME( "call (from %p) to unimplemented function %s.%s\n", MESSAGE( "wine: Call from %p to unimplemented function %s.%s, aborting\n",
rec->ExceptionAddress, rec->ExceptionAddress,
(char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] ); (char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
else else
FIXME( "call (from %p) to unimplemented function %s.%ld\n", MESSAGE( "wine: Call from %p to unimplemented function %s.%ld, aborting\n",
rec->ExceptionAddress, rec->ExceptionAddress,
(char*)rec->ExceptionInformation[0], rec->ExceptionInformation[1] ); (char*)rec->ExceptionInformation[0], rec->ExceptionInformation[1] );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment