Make unimplemented function message a bit prettier

Mike Hearn mike at navi.cx
Thu May 12 15:46:00 CDT 2005


This is a message end users may need to see and (at least vaguely)
understand, there's no reason to have the usual debugging stuff
put in front of it. If they see this message, it's game over
anyway ...

Mike Hearn <mike at navi.cx>
Make unimplemented function message a bit prettier

Index: dlls/ntdll/exception.c
===================================================================
RCS file: /home/wine/wine/dlls/ntdll/exception.c,v
retrieving revision 1.74
diff -u -p -d -u -r1.74 exception.c
--- dlls/ntdll/exception.c	7 May 2005 18:10:30 -0000	1.74
+++ dlls/ntdll/exception.c	12 May 2005 20:44:41 -0000
@@ -235,11 +235,11 @@ void WINAPI __regs_RtlRaiseException( EX
     if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
     {
         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,
                    (char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
         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,
                    (char*)rec->ExceptionInformation[0], rec->ExceptionInformation[1] );
     }



More information about the wine-patches mailing list