Create placeholder for IS-CAB info printing

This commit is contained in:
Matt Nadareski
2022-12-27 16:56:00 -08:00
parent 98395387a7
commit 3278420d72

View File

@@ -354,6 +354,25 @@ namespace Test
gcf.Print();
}
// // IS-CAB archive
// else if (ft == SupportedFileType.InstallShieldCAB)
// {
// // Build the cabinet information
// Console.WriteLine("Creating IS-CAB deserializer");
// Console.WriteLine();
// var cabinet = BurnOutSharp.Builders.InstallShieldCabinet.ParseCabinet(stream);
// if (cabinet == null)
// {
// Console.WriteLine("Something went wrong parsing IS-CAB archive");
// Console.WriteLine();
// return;
// }
// // Print the cabinet info to screen
// cabinet.Print();
// }
// MoPaQ (MPQ) archive
else if (ft == SupportedFileType.MPQ)
{