aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/StdOutStream.cpp
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/Common/StdOutStream.cpp
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'CPP/Common/StdOutStream.cpp')
-rw-r--r--CPP/Common/StdOutStream.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/CPP/Common/StdOutStream.cpp b/CPP/Common/StdOutStream.cpp
index 40799e2..cfa5fde 100644
--- a/CPP/Common/StdOutStream.cpp
+++ b/CPP/Common/StdOutStream.cpp
@@ -11,11 +11,12 @@
11#include "StringConvert.h" 11#include "StringConvert.h"
12#include "UTFConvert.h" 12#include "UTFConvert.h"
13 13
14#define kFileOpenMode "wt"
15
16CStdOutStream g_StdOut(stdout); 14CStdOutStream g_StdOut(stdout);
17CStdOutStream g_StdErr(stderr); 15CStdOutStream g_StdErr(stderr);
18 16
17/*
18// #define kFileOpenMode "wt"
19
19bool CStdOutStream::Open(const char *fileName) throw() 20bool CStdOutStream::Open(const char *fileName) throw()
20{ 21{
21 Close(); 22 Close();
@@ -34,6 +35,7 @@ bool CStdOutStream::Close() throw()
34 _streamIsOpen = false; 35 _streamIsOpen = false;
35 return true; 36 return true;
36} 37}
38*/
37 39
38bool CStdOutStream::Flush() throw() 40bool CStdOutStream::Flush() throw()
39{ 41{
@@ -73,7 +75,7 @@ void CStdOutStream::Convert_UString_to_AString(const UString &src, AString &dest
73 75
74static const wchar_t kReplaceChar = '_'; 76static const wchar_t kReplaceChar = '_';
75 77
76void CStdOutStream::Normalize_UString__LF_Allowed(UString &s) 78void CStdOutStream::Normalize_UString_LF_Allowed(UString &s)
77{ 79{
78 unsigned len = s.Len(); 80 unsigned len = s.Len();
79 wchar_t *d = s.GetBuf(); 81 wchar_t *d = s.GetBuf();