mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 16:07:10 -06:00
Update to 7-Zip Version 18.05
This commit is contained in:
@@ -13,7 +13,9 @@ class CStdOutStream
|
||||
FILE *_stream;
|
||||
bool _streamIsOpen;
|
||||
public:
|
||||
CStdOutStream(): _stream(0), _streamIsOpen(false) {};
|
||||
bool IsTerminalMode;
|
||||
|
||||
CStdOutStream(): _stream(0), _streamIsOpen(false), IsTerminalMode(false) {};
|
||||
CStdOutStream(FILE *stream): _stream(stream), _streamIsOpen(false) {};
|
||||
~CStdOutStream() { Close(); }
|
||||
|
||||
@@ -50,6 +52,13 @@ public:
|
||||
|
||||
CStdOutStream & operator<<(const wchar_t *s);
|
||||
void PrintUString(const UString &s, AString &temp);
|
||||
|
||||
void Normalize_UString__LF_Allowed(UString &s);
|
||||
void Normalize_UString(UString &s);
|
||||
|
||||
void NormalizePrint_UString(const UString &s, UString &tempU, AString &tempA);
|
||||
void NormalizePrint_UString(const UString &s);
|
||||
void NormalizePrint_wstr(const wchar_t *s);
|
||||
};
|
||||
|
||||
CStdOutStream & endl(CStdOutStream & outStream) throw();
|
||||
|
||||
Reference in New Issue
Block a user