mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 00:11:37 -06:00
Update to 7-Zip 17.00 Beta
This commit is contained in:
@@ -20,11 +20,16 @@ public:
|
||||
bool Open(LPCTSTR fileName) throw();
|
||||
bool Close() throw();
|
||||
|
||||
AString ScanStringUntilNewLine(bool allowEOF = false);
|
||||
void ReadToString(AString &resultString);
|
||||
UString ScanUStringUntilNewLine();
|
||||
// returns:
|
||||
// false, if ZERO character in stream
|
||||
// true, if EOF or '\n'
|
||||
bool ScanAStringUntilNewLine(AString &s);
|
||||
bool ScanUStringUntilNewLine(UString &s);
|
||||
// bool ReadToString(AString &resultString);
|
||||
|
||||
bool Eof() const throw() { return (feof(_stream) != 0); }
|
||||
bool Error() const throw() { return (ferror(_stream) != 0); }
|
||||
|
||||
bool Eof() throw();
|
||||
int GetChar();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user