/alps/ufodecode

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/ufodecode

« back to all changes in this revision

Viewing changes to src/libipe-private.h

  • Committer: Matthias Vogelgesang
  • Date: 2011-12-01 08:41:56 UTC
  • Revision ID: matthias.vogelgesang@kit.edu-20111201084156-72tgvappjjy6aj4u
Make ipedec a lib and executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LIB_IPE_PRIVATE_H
 
2
#define LIB_IPE_PRIVATE_H
 
3
 
 
4
#include <stdbool.h>
 
5
 
 
6
struct ipe_decoder_t {
 
7
    uint32_t height;
 
8
    uint32_t *raw;
 
9
    size_t num_bytes; 
 
10
    uint32_t current_pos;
 
11
};
 
12
 
 
13
 
 
14
#endif
 
15