mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
410 B
C#
14 lines
410 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Compiler.PatchCache;
|
|
using Wabbajack.Hashing.xxHash64;
|
|
|
|
namespace Wabbajack.Compiler;
|
|
|
|
public interface IBinaryPatchCache
|
|
{
|
|
public Task<CacheEntry> CreatePatch(Stream srcStream, Hash srcHash, Stream destStream, Hash destHash);
|
|
|
|
public Task<CacheEntry?> GetPatch(Hash hashA, Hash hashB);
|
|
public Task<byte[]> GetData(CacheEntry entry);
|
|
} |