mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 00:11:34 -06:00
Update to 7-Zip Version 21.02
This commit is contained in:
@@ -14,9 +14,15 @@ class CStdOutStream
|
||||
bool _streamIsOpen;
|
||||
public:
|
||||
bool IsTerminalMode;
|
||||
int CodePage;
|
||||
|
||||
CStdOutStream(FILE *stream = 0):
|
||||
_stream(stream),
|
||||
_streamIsOpen(false),
|
||||
IsTerminalMode(false),
|
||||
CodePage(-1)
|
||||
{};
|
||||
|
||||
CStdOutStream(): _stream(0), _streamIsOpen(false), IsTerminalMode(false) {};
|
||||
CStdOutStream(FILE *stream): _stream(stream), _streamIsOpen(false) {};
|
||||
~CStdOutStream() { Close(); }
|
||||
|
||||
// void AttachStdStream(FILE *stream) { _stream = stream; _streamIsOpen = false; }
|
||||
@@ -52,6 +58,7 @@ public:
|
||||
|
||||
CStdOutStream & operator<<(const wchar_t *s);
|
||||
void PrintUString(const UString &s, AString &temp);
|
||||
void Convert_UString_to_AString(const UString &src, AString &dest);
|
||||
|
||||
void Normalize_UString__LF_Allowed(UString &s);
|
||||
void Normalize_UString(UString &s);
|
||||
@@ -66,6 +73,4 @@ CStdOutStream & endl(CStdOutStream & outStream) throw();
|
||||
extern CStdOutStream g_StdOut;
|
||||
extern CStdOutStream g_StdErr;
|
||||
|
||||
void StdOut_Convert_UString_to_AString(const UString &s, AString &temp);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user