mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 05:25:41 +00:00
21 lines
684 B
C#
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; }
|
|
}
|
|
} |