While working on Wine ports or Hangover I sometimes come across exceptions with code=6ba. When I forget about which exception it is, I have a hard time figuring it out, as greping for 6ba shows nothing relevant. Only after conversion to dec (1722) one stumbles across the right exception. So please consider adding it to the list.
From: André Zwing nerv@dawncrow.de
--- dlls/ntdll/exception.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c index fc3e8982a98..9c69eb0eabe 100644 --- a/dlls/ntdll/exception.c +++ b/dlls/ntdll/exception.c @@ -94,6 +94,7 @@ const char *debugstr_exception_code( DWORD code ) case EXCEPTION_WINE_CXX_EXCEPTION: return "EXCEPTION_WINE_CXX_EXCEPTION"; case EXCEPTION_WINE_NAME_THREAD: return "EXCEPTION_WINE_NAME_THREAD"; case EXCEPTION_WINE_STUB: return "EXCEPTION_WINE_STUB"; + case RPC_S_SERVER_UNAVAILABLE: return "RPC_S_SERVER_UNAVAILABLE"; } return "unknown"; }