diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /C/Ppmd7.h | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.tar.gz 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.tar.bz2 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.zip |
23.0123.01
Diffstat (limited to 'C/Ppmd7.h')
-rw-r--r-- | C/Ppmd7.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,11 +1,11 @@ | |||
1 | /* Ppmd7.h -- Ppmd7 (PPMdH) compression codec | 1 | /* Ppmd7.h -- Ppmd7 (PPMdH) compression codec |
2 | 2021-04-13 : Igor Pavlov : Public domain | 2 | 2023-04-02 : Igor Pavlov : Public domain |
3 | This code is based on: | 3 | This code is based on: |
4 | PPMd var.H (2001): Dmitry Shkarin : Public domain */ | 4 | PPMd var.H (2001): Dmitry Shkarin : Public domain */ |
5 | 5 | ||
6 | 6 | ||
7 | #ifndef __PPMD7_H | 7 | #ifndef ZIP7_INC_PPMD7_H |
8 | #define __PPMD7_H | 8 | #define ZIP7_INC_PPMD7_H |
9 | 9 | ||
10 | #include "Ppmd.h" | 10 | #include "Ppmd.h" |
11 | 11 | ||
@@ -55,7 +55,7 @@ typedef struct | |||
55 | UInt32 Range; | 55 | UInt32 Range; |
56 | UInt32 Code; | 56 | UInt32 Code; |
57 | UInt32 Low; | 57 | UInt32 Low; |
58 | IByteIn *Stream; | 58 | IByteInPtr Stream; |
59 | } CPpmd7_RangeDec; | 59 | } CPpmd7_RangeDec; |
60 | 60 | ||
61 | 61 | ||
@@ -66,7 +66,7 @@ typedef struct | |||
66 | // Byte _dummy_[3]; | 66 | // Byte _dummy_[3]; |
67 | UInt64 Low; | 67 | UInt64 Low; |
68 | UInt64 CacheSize; | 68 | UInt64 CacheSize; |
69 | IByteOut *Stream; | 69 | IByteOutPtr Stream; |
70 | } CPpmd7z_RangeEnc; | 70 | } CPpmd7z_RangeEnc; |
71 | 71 | ||
72 | 72 | ||