Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
bcj.h
Go to the documentation of this file.
1
6/*
7 * Author: Lasse Collin
8 *
9 * This file has been put into the public domain.
10 * You can do whatever you want with this file.
11 *
12 * See ../lzma.h for information about liblzma as a whole.
13 */
14
15#ifndef LZMA_H_INTERNAL
16# error Never include this file directly. Use <lzma.h> instead.
17#endif
18
19
20/* Filter IDs for lzma_filter.id */
21
22#define LZMA_FILTER_X86 LZMA_VLI_C(0x04)
27#define LZMA_FILTER_POWERPC LZMA_VLI_C(0x05)
32#define LZMA_FILTER_IA64 LZMA_VLI_C(0x06)
37#define LZMA_FILTER_ARM LZMA_VLI_C(0x07)
42#define LZMA_FILTER_ARMTHUMB LZMA_VLI_C(0x08)
47#define LZMA_FILTER_SPARC LZMA_VLI_C(0x09)
52#define LZMA_FILTER_ARM64 LZMA_VLI_C(0x0A)
77typedef struct {
92 uint32_t start_offset;
93
Options for BCJ filters.
Definition bcj.h:73