mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[CoreRarArchive] Fix windows build
This commit is contained in:
@@ -152,17 +152,17 @@ namespace SabreTools.Library.FileTypes
|
||||
|
||||
#region Unimplemented methods
|
||||
|
||||
public override bool ExtractAll(string outDir)
|
||||
public override bool CopyAll(string outDir)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override string ExtractEntry(string entryName, string outDir)
|
||||
public override string CopyToFile(string entryName, string outDir)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public override (MemoryStream, string) ExtractEntryStream(string entryName)
|
||||
public override (MemoryStream, string) CopyToStream(string entryName)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user