Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
delta_encoder.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_ENCODER_H
14#define LZMA_DELTA_ENCODER_H
15
16#include "delta_common.h"
17
21
22extern lzma_ret lzma_delta_props_encode(const void *options, uint8_t *out);
23
24#endif
Custom functions for memory handling.
Definition base.h:372
Definition common.h:177
Hold data and function pointers of the next filter in the chain.
Definition common.h:195
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
const lzma_options_lzma * options
Definition container.h:545
Common stuff for Delta encoder and decoder.
lzma_ret lzma_delta_props_encode(const void *options, uint8_t *out)
Definition delta_encoder.c:114
lzma_ret lzma_delta_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition delta_encoder.c:104