~ubuntu-branches/ubuntu/utopic/python-lzma/utopic

« back to all changes in this revision

Viewing changes to src/liblzma_compressobj.h

  • Committer: Bazaar Package Importer
  • Author(s): Richard Darst
  • Date: 2010-04-19 14:16:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100419141648-qwz3nm7shemqp37n
Tags: 0.5.3-1
* New upstream version
* Upgrade to 3.0 (quilt) just to be able to use .orig.tar.bz2
* Bump standards-version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LIBLZMA_COMPRESSOBJ_H
 
2
#define LIBLZMA_COMPRESSOBJ_H 1
 
3
 
 
4
#include "liblzma.h"
 
5
#include <structmember.h>
 
6
 
 
7
typedef struct
 
8
{
 
9
        PyObject_HEAD
 
10
        lzma_stream lzus;
 
11
        lzma_options_lzma options;
 
12
        lzma_filter filters[LZMA_FILTERS_MAX + 2];
 
13
        bool is_initialised, running;
 
14
        PyObject *lzma_options;
 
15
#ifdef WITH_THREAD
 
16
        PyThread_type_lock lock;
 
17
#endif
 
18
} LZMACompObject;
 
19
 
 
20
extern PyTypeObject LZMAComp_Type;
 
21
 
 
22
#endif /* LIBLZMA_COMPRESSOBJ_H */