2013-04-07 10:58:58 +01:00
|
|
|
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>();
|
|
|
|
|
|
2013-04-28 12:32:55 +01:00
|
|
|
public int CommandCount { get; set; }
|
2013-04-07 10:58:58 +01:00
|
|
|
|
|
|
|
|
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];
|
|
|
|
|
|
2013-04-28 12:32:55 +01:00
|
|
|
internal int FilteredDataOffset { get; set; }
|
|
|
|
|
internal int FilteredDataSize { get; set; }
|
2013-04-07 10:58:58 +01:00
|
|
|
}
|
|
|
|
|
}
|