diff options
Diffstat (limited to 'C/LzFind.h')
-rw-r--r-- | C/LzFind.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* LzFind.h -- Match finder for LZ algorithms | 1 | /* LzFind.h -- Match finder for LZ algorithms |
2 | 2023-03-04 : Igor Pavlov : Public domain */ | 2 | 2024-01-22 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #ifndef ZIP7_INC_LZ_FIND_H | 4 | #ifndef ZIP7_INC_LZ_FIND_H |
5 | #define ZIP7_INC_LZ_FIND_H | 5 | #define ZIP7_INC_LZ_FIND_H |
@@ -144,7 +144,8 @@ void MatchFinder_CreateVTable(CMatchFinder *p, IMatchFinder2 *vTable); | |||
144 | void MatchFinder_Init_LowHash(CMatchFinder *p); | 144 | void MatchFinder_Init_LowHash(CMatchFinder *p); |
145 | void MatchFinder_Init_HighHash(CMatchFinder *p); | 145 | void MatchFinder_Init_HighHash(CMatchFinder *p); |
146 | void MatchFinder_Init_4(CMatchFinder *p); | 146 | void MatchFinder_Init_4(CMatchFinder *p); |
147 | void MatchFinder_Init(CMatchFinder *p); | 147 | // void MatchFinder_Init(CMatchFinder *p); |
148 | void MatchFinder_Init(void *p); | ||
148 | 149 | ||
149 | UInt32* Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances); | 150 | UInt32* Bt3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances); |
150 | UInt32* Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances); | 151 | UInt32* Hc3Zip_MatchFinder_GetMatches(CMatchFinder *p, UInt32 *distances); |