7zip/CPP/Windows/ErrorMsg.h
Igor Pavlov 5b39dc76f1 23.01
2023-12-17 14:59:19 +05:00

17 lines
322 B
C++

// Windows/ErrorMsg.h
#ifndef ZIP7_INC_WINDOWS_ERROR_MSG_H
#define ZIP7_INC_WINDOWS_ERROR_MSG_H
#include "../Common/MyString.h"
namespace NWindows {
namespace NError {
UString MyFormatMessage(DWORD errorCode);
inline UString MyFormatMessage(HRESULT errorCode) { return MyFormatMessage((DWORD)errorCode); }
}}
#endif