Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: third_party/lzma/v4_65/files/CS/7zip/Compress/LZ/IMatchFinder.cs

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // IMatchFinder.cs
2
3 using System;
4
5 namespace SevenZip.Compression.LZ
6 {
7 interface IInWindowStream
8 {
9 void SetStream(System.IO.Stream inStream);
10 void Init();
11 void ReleaseStream();
12 Byte GetIndexByte(Int32 index);
13 UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit);
14 UInt32 GetNumAvailableBytes();
15 }
16
17 interface IMatchFinder : IInWindowStream
18 {
19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore,
20 UInt32 matchMaxLen, UInt32 keepAddBufferAfter);
21 UInt32 GetMatches(UInt32[] distances);
22 void Skip(UInt32 num);
23 }
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698