mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 19:47:09 +00:00
33 lines
816 B
C#
33 lines
816 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;
|
|
}
|
|
}
|
|
} |