// Windows/Error.h #include "StdAfx.h" #include "Windows/Error.h" #include "Common/StringConvert.h" namespace NWindows { namespace NError { bool MyFormatMessage(DWORD messageID, CSysString &message) { const char * txt = 0; AString msg; switch(messageID) { case ERROR_NO_MORE_FILES : txt = "No more files"; break ; case E_NOTIMPL : txt = "E_NOTIMPL"; break ; case E_NOINTERFACE : txt = "E_NOINTERFACE"; break ; case E_ABORT : txt = "E_ABORT"; break ; case E_FAIL : txt = "E_FAIL"; break ; case STG_E_INVALIDFUNCTION : txt = "STG_E_INVALIDFUNCTION"; break ; case E_OUTOFMEMORY : txt = "E_OUTOFMEMORY"; break ; case E_INVALIDARG : txt = "E_INVALIDARG"; break ; default: txt = strerror(messageID); } if (txt) { msg = txt; } else { char msgBuf[256]; snprintf(msgBuf,sizeof(msgBuf),"error #%x",(unsigned)messageID); msgBuf[sizeof(msgBuf)-1] = 0; msg = msgBuf; } msg += " "; #ifdef _UNICODE message = MultiByteToUnicodeString(msg); #else message = msg; #endif return true; } #ifndef _UNICODE bool MyFormatMessage(DWORD messageID, UString &message) { CSysString messageSys; bool result = MyFormatMessage(messageID, messageSys); message = GetUnicodeString(messageSys); return result; } #endif }}