mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2026-06-17 00:09:23 +00:00
f2ac1ece55
add
26 lines
701 B
C#
26 lines
701 B
C#
// Decompiled with JetBrains decompiler
|
|
// Type: SevenZip.Compression.LZ.IInWindowStream
|
|
// Assembly: actmp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
// MVID: 50C41484-D1A9-4872-9CEC-A8081495D24E
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00001-msil\Trojan-Dropper.MSIL.Late.jc-6e02b71a709e42516d7a14e4e52d08479b8d86674e6e6992da3654142ae73613.exe
|
|
|
|
using System.IO;
|
|
|
|
namespace SevenZip.Compression.LZ
|
|
{
|
|
internal interface IInWindowStream
|
|
{
|
|
void SetStream(Stream inStream);
|
|
|
|
void Init();
|
|
|
|
void ReleaseStream();
|
|
|
|
byte GetIndexByte(int index);
|
|
|
|
uint GetMatchLen(int index, uint distance, uint limit);
|
|
|
|
uint GetNumAvailableBytes();
|
|
}
|
|
}
|