~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/lzma_iface.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef __LZMA_IFACE_H
24
24
#define __LZMA_IFACE_H
25
25
 
 
26
#include "7z/LzmaDec.h"
26
27
#include "cltypes.h"
27
 
 
28
 
typedef struct CLI_LZMA_tag CLI_LZMA;
 
28
#include "others.h"
 
29
 
 
30
struct CLI_LZMA {
 
31
    CLzmaDec state;
 
32
    unsigned char header[LZMA_PROPS_SIZE];
 
33
    unsigned int p_cnt;
 
34
    unsigned int s_cnt;
 
35
    unsigned int freeme;
 
36
    unsigned int init;
 
37
    uint64_t usize;
 
38
    unsigned char *next_in;
 
39
    unsigned char *next_out;
 
40
    SizeT avail_in;
 
41
    SizeT avail_out;
 
42
};
 
43
 
29
44
 
30
45
struct stream_state {
31
 
        uint32_t avail_in;
32
 
        unsigned char *next_in;
33
 
        uint32_t avail_out;
34
 
        unsigned char *next_out;
 
46
    uint32_t avail_in;
 
47
    unsigned char *next_in;
 
48
    uint32_t avail_out;
 
49
    unsigned char *next_out;
35
50
};
36
51
 
37
 
int cli_LzmaInit(CLI_LZMA **, uint64_t);
38
 
void cli_LzmaShutdown(CLI_LZMA **);
39
 
int cli_LzmaDecode(CLI_LZMA **, struct stream_state*);
40
 
int cli_LzmaInitUPX(CLI_LZMA **, uint32_t);
 
52
int cli_LzmaInit(struct CLI_LZMA *, uint64_t);
 
53
void cli_LzmaShutdown(struct CLI_LZMA *);
 
54
int cli_LzmaDecode(struct CLI_LZMA *);
 
55
 
 
56
void *__lzma_wrap_alloc(void *unused, size_t size);
 
57
void __lzma_wrap_free(void *unused, void *freeme);
41
58
 
42
59
#define LZMA_STREAM_END 2
43
60
#define LZMA_RESULT_OK 0