aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/ErrorMsg.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Windows/ErrorMsg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/CPP/Windows/ErrorMsg.cpp b/CPP/Windows/ErrorMsg.cpp
index f6343a5..5acf3ad 100644
--- a/CPP/Windows/ErrorMsg.cpp
+++ b/CPP/Windows/ErrorMsg.cpp
@@ -19,8 +19,8 @@ namespace NError {
19 19
20static bool MyFormatMessage(DWORD errorCode, UString &message) 20static bool MyFormatMessage(DWORD errorCode, UString &message)
21{ 21{
22 #ifndef _SFX 22 #ifndef Z7_SFX
23 if ((HRESULT)errorCode == MY_HRES_ERROR__INTERNAL_ERROR) 23 if ((HRESULT)errorCode == MY_HRES_ERROR_INTERNAL_ERROR)
24 { 24 {
25 message = "Internal Error: The failure in hardware (RAM or CPU), OS or program"; 25 message = "Internal Error: The failure in hardware (RAM or CPU), OS or program";
26 return true; 26 return true;
@@ -72,7 +72,7 @@ static bool MyFormatMessage(DWORD errorCode, UString &message)
72 case E_OUTOFMEMORY : s = "E_OUTOFMEMORY : Can't allocate required memory"; break; 72 case E_OUTOFMEMORY : s = "E_OUTOFMEMORY : Can't allocate required memory"; break;
73 case E_INVALIDARG : s = "E_INVALIDARG : One or more arguments are invalid"; break; 73 case E_INVALIDARG : s = "E_INVALIDARG : One or more arguments are invalid"; break;
74 74
75 // case MY__E_ERROR_NEGATIVE_SEEK : s = "MY__E_ERROR_NEGATIVE_SEEK"; break; 75 // case MY_E_ERROR_NEGATIVE_SEEK : s = "MY_E_ERROR_NEGATIVE_SEEK"; break;
76 default: 76 default:
77 break; 77 break;
78 } 78 }
@@ -81,7 +81,7 @@ static bool MyFormatMessage(DWORD errorCode, UString &message)
81 So we must transfer error codes before strerror() */ 81 So we must transfer error codes before strerror() */
82 if (!s) 82 if (!s)
83 { 83 {
84 if ((errorCode & 0xFFFF0000) == (UInt32)((MY__FACILITY__WRes << 16) | 0x80000000)) 84 if ((errorCode & 0xFFFF0000) == (UInt32)((MY_FACILITY_WRes << 16) | 0x80000000))
85 errorCode &= 0xFFFF; 85 errorCode &= 0xFFFF;
86 else if ((errorCode & ((UInt32)1 << 31))) 86 else if ((errorCode & ((UInt32)1 << 31)))
87 return false; // we will show hex error later for that case 87 return false; // we will show hex error later for that case