Files
sharpcompress/SharpCompress/Compressor/Rar/VM/VMPreparedProgram.cs
2013-04-28 12:32:55 +01:00

21 lines
684 B
C#

using System.Collections.Generic;
namespace SharpCompress.Compressor.Rar.VM
{
internal class VMPreparedProgram
{
internal List<VMPreparedCommand> Commands = new List<VMPreparedCommand>();
internal List<VMPreparedCommand> AltCommands = new List<VMPreparedCommand>();
public int CommandCount { get; set; }
internal List<byte> GlobalData = new List<byte>();
internal List<byte> StaticData = new List<byte>();
// static data contained in DB operators
internal int[] InitR = new int[7];
internal int FilteredDataOffset { get; set; }
internal int FilteredDataSize { get; set; }
}
}