aboutsummaryrefslogtreecommitdiff
path: root/C/LzFindMt.h
diff options
context:
space:
mode:
Diffstat (limited to 'C/LzFindMt.h')
-rw-r--r--C/LzFindMt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/C/LzFindMt.h b/C/LzFindMt.h
index 660b724..db5923e 100644
--- a/C/LzFindMt.h
+++ b/C/LzFindMt.h
@@ -1,15 +1,15 @@
1/* LzFindMt.h -- multithreaded Match finder for LZ algorithms 1/* LzFindMt.h -- multithreaded Match finder for LZ algorithms
22021-07-12 : Igor Pavlov : Public domain */ 22023-03-05 : Igor Pavlov : Public domain */
3 3
4#ifndef __LZ_FIND_MT_H 4#ifndef ZIP7_INC_LZ_FIND_MT_H
5#define __LZ_FIND_MT_H 5#define ZIP7_INC_LZ_FIND_MT_H
6 6
7#include "LzFind.h" 7#include "LzFind.h"
8#include "Threads.h" 8#include "Threads.h"
9 9
10EXTERN_C_BEGIN 10EXTERN_C_BEGIN
11 11
12typedef struct _CMtSync 12typedef struct
13{ 13{
14 UInt32 numProcessedBlocks; 14 UInt32 numProcessedBlocks;
15 CThread thread; 15 CThread thread;
@@ -39,7 +39,7 @@ typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distance
39typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos, 39typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
40 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *crc); 40 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *crc);
41 41
42typedef struct _CMatchFinderMt 42typedef struct
43{ 43{
44 /* LZ */ 44 /* LZ */
45 const Byte *pointerToCurPos; 45 const Byte *pointerToCurPos;