VMPreparedProgram.cs 665 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace SharpCompress.Compressors.Rar.VM
  3. {
  4. internal class VMPreparedProgram
  5. {
  6. internal List<VMPreparedCommand> Commands = new List<VMPreparedCommand>();
  7. internal List<VMPreparedCommand> AltCommands = new List<VMPreparedCommand>();
  8. public int CommandCount { get; set; }
  9. internal List<byte> GlobalData = new List<byte>();
  10. internal List<byte> StaticData = new List<byte>();
  11. // static data contained in DB operators
  12. internal int[] InitR = new int[7];
  13. internal int FilteredDataOffset { get; set; }
  14. internal int FilteredDataSize { get; set; }
  15. }
  16. }