1370b324cSopenharmony_ci// Windows/ErrorMsg.h 2370b324cSopenharmony_ci 3370b324cSopenharmony_ci#ifndef ZIP7_INC_WINDOWS_ERROR_MSG_H 4370b324cSopenharmony_ci#define ZIP7_INC_WINDOWS_ERROR_MSG_H 5370b324cSopenharmony_ci 6370b324cSopenharmony_ci#include "../Common/MyString.h" 7370b324cSopenharmony_ci 8370b324cSopenharmony_cinamespace NWindows { 9370b324cSopenharmony_cinamespace NError { 10370b324cSopenharmony_ci 11370b324cSopenharmony_ciUString MyFormatMessage(DWORD errorCode); 12370b324cSopenharmony_ciinline UString MyFormatMessage(HRESULT errorCode) { return MyFormatMessage((DWORD)errorCode); } 13370b324cSopenharmony_ci 14370b324cSopenharmony_ci}} 15370b324cSopenharmony_ci 16370b324cSopenharmony_ci#endif 17