Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
delta_private.h
Go to the documentation of this file.
1
2//
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
18typedef struct {
20 lzma_next_coder next;
21
23 size_t distance;
24
26 uint8_t pos;
27
29 uint8_t history[LZMA_DELTA_DIST_MAX];
31
32
36
37#endif
Custom functions for memory handling.
Definition base.h:372
Definition delta_private.h:18
Definition common.h:177
Hold data and function pointers of the next filter in the chain.
Definition common.h:195
#define LZMA_DELTA_DIST_MAX
Definition delta.h:61
lzma_ret
Return values used by several functions in liblzma.
Definition base.h:57
const lzma_allocator * allocator
Definition block.h:377
const lzma_filter * filters
Definition container.h:315
lzma_ret lzma_delta_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition delta_common.c:28
Common stuff for Delta encoder and decoder.