Rizin
unix-like reverse engineering framework and cli tools
delta_private.h
Go to the documentation of this file.
1 //
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
12 
13 #ifndef LZMA_DELTA_PRIVATE_H
14 #define LZMA_DELTA_PRIVATE_H
15 
16 #include "delta_common.h"
17 
18 typedef struct {
21 
23  size_t distance;
24 
27 
31 
32 
35  const lzma_filter_info *filters);
36 
37 #endif
const lzma_allocator * allocator
Definition: block.h:377
const lzma_filter * filters
Definition: container.h:315
#define LZMA_DELTA_DIST_MAX
Definition: delta.h:61
Common stuff for Delta encoder and decoder.
lzma_ret lzma_delta_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition: delta_common.c:28
unsigned char uint8_t
Definition: sftypes.h:31
Custom functions for memory handling.
Definition: base.h:372
lzma_next_coder next
Next coder in the chain.
Definition: delta_private.h:20
uint8_t pos
Position in history[].
Definition: delta_private.h:26
size_t distance
Delta distance.
Definition: delta_private.h:23
Hold data and function pointers of the next filter in the chain.
Definition: common.h:135
lzma_ret
Return values used by several functions in liblzma.
Definition: base.h:57