diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2024-05-14 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2024-05-15 23:55:04 +0500 |
commit | fc662341e6f85da78ada0e443f6116b978f79f22 (patch) | |
tree | 1be1cc402a7a9cbc18d4eeea6b141354c2d559e3 /C/LzFind.h | |
parent | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (diff) | |
download | 7zip-fc662341e6f85da78ada0e443f6116b978f79f22.tar.gz 7zip-fc662341e6f85da78ada0e443f6116b978f79f22.tar.bz2 7zip-fc662341e6f85da78ada0e443f6116b978f79f22.zip |
24.0524.05
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); |