aboutsummaryrefslogtreecommitdiff
path: root/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain
diff options
context:
space:
mode:
Diffstat (limited to 'sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain')
-rw-r--r--sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC2.h13
-rw-r--r--sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC3.h16
-rw-r--r--sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC4.h19
-rw-r--r--sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h6
4 files changed, 54 insertions, 0 deletions
diff --git a/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC2.h b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC2.h
new file mode 100644
index 00000000..d8e61a74
--- /dev/null
+++ b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC2.h
@@ -0,0 +1,13 @@
+// HC2.h
+
+#ifndef __HC2_H
+#define __HC2_H
+
+#define BT_NAMESPACE NHC2
+
+#include "HCMain.h"
+
+#undef BT_NAMESPACE
+
+#endif
+
diff --git a/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC3.h b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC3.h
new file mode 100644
index 00000000..263690af
--- /dev/null
+++ b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC3.h
@@ -0,0 +1,16 @@
+// HC3.h
+
+#ifndef __HC3_H
+#define __HC3_H
+
+#define BT_NAMESPACE NHC3
+
+#define HASH_ARRAY_2
+
+#include "HCMain.h"
+
+#undef HASH_ARRAY_2
+#undef BT_NAMESPACE
+
+#endif
+
diff --git a/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC4.h b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC4.h
new file mode 100644
index 00000000..1fda4ac6
--- /dev/null
+++ b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HC4.h
@@ -0,0 +1,19 @@
+// HC4.h
+
+#ifndef __HC4_H
+#define __HC4_H
+
+#define BT_NAMESPACE NHC4
+
+#define HASH_ARRAY_2
+#define HASH_ARRAY_3
+
+#include "HCMain.h"
+
+#undef HASH_ARRAY_2
+#undef HASH_ARRAY_3
+
+#undef BT_NAMESPACE
+
+#endif
+
diff --git a/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h
new file mode 100644
index 00000000..d509befe
--- /dev/null
+++ b/sp/src/utils/lzma/C/7zip/Compress/LZ/HashChain/HCMain.h
@@ -0,0 +1,6 @@
+// HCMain.h
+
+#define _HASH_CHAIN
+#include "../BinTree/BinTreeMain.h"
+#undef _HASH_CHAIN
+