blob: dba004061af6d71c9f78d6addf8b9dcafa9f6716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef QR_CODE_H
#define QR_CODE_H
#include <stddef.h>
#include "types.h"
enum qr_ec_level {
QR_EC_LEVEL_L = 0x1,
QR_EC_LEVEL_M = 0x0,
QR_EC_LEVEL_Q = 0x3,
QR_EC_LEVEL_H = 0x2
};
struct qr_code * qr_code_create(enum qr_ec_level ec,
const struct qr_data * data);
void qr_code_destroy(struct qr_code *);
int qr_code_width(const struct qr_code *);
struct qr_code * qr_code_parse(const void * buffer,
size_t line_bits,
size_t line_stride,
size_t line_count);
#endif
|