This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
using System.IO;
namespace ICSharpCode.SharpZipLib.Zip
{
// Token: 0x02000076 RID: 118
public interface IArchiveStorage
{
// Token: 0x1700010D RID: 269
// (get) Token: 0x06000484 RID: 1156
FileUpdateMode UpdateMode { get; }
// Token: 0x06000485 RID: 1157
Stream GetTemporaryOutput();
// Token: 0x06000486 RID: 1158
Stream ConvertTemporaryToFinal();
// Token: 0x06000487 RID: 1159
Stream MakeTemporaryCopy(Stream stream);
// Token: 0x06000488 RID: 1160
Stream OpenForDirectUpdate(Stream stream);
// Token: 0x06000489 RID: 1161
void Dispose();
}
}