mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
Update to 7-Zip Version 21.06
See https://sourceforge.net/p/sevenzip/discussion/45797/thread/b463f34259/
This commit is contained in:
@@ -661,6 +661,12 @@ void AString::Add_UInt32(UInt32 v)
|
||||
_len = (unsigned)(ConvertUInt32ToString(v, _chars + _len) - _chars);
|
||||
}
|
||||
|
||||
void UString::Add_UInt64(UInt64 v)
|
||||
{
|
||||
Grow(20);
|
||||
_len = (unsigned)(ConvertUInt64ToString(v, _chars + _len) - _chars);
|
||||
}
|
||||
|
||||
void AString::SetFrom(const char *s, unsigned len) // no check
|
||||
{
|
||||
if (len > _limit)
|
||||
@@ -1304,6 +1310,12 @@ void UString::Add_UInt32(UInt32 v)
|
||||
_len = (unsigned)(ConvertUInt32ToString(v, _chars + _len) - _chars);
|
||||
}
|
||||
|
||||
void AString::Add_UInt64(UInt64 v)
|
||||
{
|
||||
Grow(20);
|
||||
_len = (unsigned)(ConvertUInt64ToString(v, _chars + _len) - _chars);
|
||||
}
|
||||
|
||||
|
||||
int UString::Find(const wchar_t *s, unsigned startIndex) const throw()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user