示例#1
0
 /// <summary>
 /// Decompresses data describing a GlobalForkTable.
 /// </summary>
 /// <param name="reader">A binary data reader from which to extract the flattened table.</param>
 /// <param name="rawData">The data stream.</param>
 public static void DecompressData(INTV.Shared.Utility.ASCIIBinaryReader reader, System.IO.Stream rawData)
 {
     FileSystemHelpers.DecompressedFixedSizeCollection(reader, rawData, Header, Fork.FlatSizeInBytes, TableSize);
 }
示例#2
0
 /// <summary>
 /// Decompresses data describing a GlobalFileTable.
 /// </summary>
 /// <param name="reader">A binary data reader from which to extract the flattened table.</param>
 /// <param name="destination">Receives the decompressed data.</param>
 public static void DecompressData(INTV.Shared.Utility.ASCIIBinaryReader reader, System.IO.Stream destination)
 {
     FileSystemHelpers.DecompressedFixedSizeCollection(reader, destination, Header, LfsFileInfo.FlatSizeInBytes, TableSize);
 }