summaryrefslogtreecommitdiffstats
path: root/src/ufodecode-private.h
blob: 19746ce757b642d35c4001470fadc792b2943fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LIB_UFODECODE_PRIVATE_H
#define LIB_UFODECODE_PRIVATE_H

#include <stdbool.h>

struct ufo_decoder_t {
    int32_t height;
    uint32_t width;
    uint32_t *raw;
    size_t num_bytes; 
    uint32_t current_pos;
};


#endif