[CoreRarArchive] Fix windows build

This commit is contained in:
Matt Nadareski
2018-02-16 01:52:40 -08:00
parent 0ba64830a1
commit 25c773bd31
2 changed files with 30 additions and 30 deletions

View File

@@ -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();
}