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

@@ -14,10 +14,12 @@
// #define kReadErrorMessage "Error reading input stream"
// #define kIllegalCharMessage "Illegal zero character in input stream"
#define kFileOpenMode TEXT("r")
CStdInStream g_StdIn(stdin);
/*
#define kFileOpenMode TEXT("r")
bool CStdInStream::Open(LPCTSTR fileName) throw()
{
Close();
@@ -39,6 +41,7 @@ bool CStdInStream::Close() throw()
_streamIsOpen = (fclose(_stream) != 0);
return !_streamIsOpen;
}
*/
bool CStdInStream::ScanAStringUntilNewLine(AString &s)
{