Update to lzma 23.01.

This commit is contained in:
2023-09-24 03:13:03 +01:00
parent 5a6a32f513
commit dda9bcac54
530 changed files with 31937 additions and 14468 deletions

View File

@@ -18,12 +18,15 @@ void ShowErrorMessage(HWND window, LPCWSTR message)
void ShowErrorMessageHwndRes(HWND window, UINT resID)
{
ShowErrorMessage(window, LangString(resID));
UString s = LangString(resID);
if (s.IsEmpty())
s.Add_UInt32(resID);
ShowErrorMessage(window, s);
}
void ShowErrorMessageRes(UINT resID)
{
ShowErrorMessageHwndRes(0, resID);
ShowErrorMessageHwndRes(NULL, resID);
}
static void ShowErrorMessageDWORD(HWND window, DWORD errorCode)