Add support for streaming archive writing and unknown filesizes in zip files

This commit is contained in:
2023-11-14 23:42:23 +01:00
parent 6356075227
commit 966db4b452
13 changed files with 154 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ namespace OpenVulkano
ChkErr(archive_free(m_archive));
}
bool ArchiveBase::ChkErr(int result) const
bool ArchiveBase::ChkErr(long result) const
{
return LibArchiveHelper::CheckError(result, m_archive, m_logger);
}