~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to C/LzFindMt.h

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* LzFindMt.h  -- multithreaded Match finder for LZ algorithms
2
 
2008-04-04
3
 
Copyright (c) 1999-2008 Igor Pavlov
4
 
Read LzFind.h for license options */
 
1
/* LzFindMt.h -- multithreaded Match finder for LZ algorithms
 
2
2008-10-04 : Igor Pavlov : Public domain */
5
3
 
6
4
#ifndef __LZFINDMT_H
7
5
#define __LZFINDMT_H
91
89
 
92
90
void MatchFinderMt_Construct(CMatchFinderMt *p);
93
91
void MatchFinderMt_Destruct(CMatchFinderMt *p, ISzAlloc *alloc);
94
 
SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, 
 
92
SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
95
93
    UInt32 matchMaxLen, UInt32 keepAddBufferAfter, ISzAlloc *alloc);
96
94
void MatchFinderMt_CreateVTable(CMatchFinderMt *p, IMatchFinder *vTable);
97
95
void MatchFinderMt_ReleaseStream(CMatchFinderMt *p);