aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/qr
diff options
context:
space:
mode:
authorLeo Howell <leo@lwh.jp>2009-10-08 12:18:31 +0900
committerLeo Howell <leo@lwh.jp>2009-10-08 12:18:31 +0900
commitad59de83b7f82cb812d23ac2bb948ac32fe0ac71 (patch)
tree62dd5e9122402e2fd4a378189ea30b1d8bbfbd3d /lpg/libqr/qr
parent27ed9a6bb8e101f1eee5a953e9985f4d631a4aa9 (diff)
downloadpdf-simple-sign-ad59de83b7f82cb812d23ac2bb948ac32fe0ac71.tar.gz
pdf-simple-sign-ad59de83b7f82cb812d23ac2bb948ac32fe0ac71.tar.xz
pdf-simple-sign-ad59de83b7f82cb812d23ac2bb948ac32fe0ac71.zip
Render ec level, mask info bits
Diffstat (limited to 'lpg/libqr/qr')
-rw-r--r--lpg/libqr/qr/code.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lpg/libqr/qr/code.h b/lpg/libqr/qr/code.h
index 56a9884..dba0040 100644
--- a/lpg/libqr/qr/code.h
+++ b/lpg/libqr/qr/code.h
@@ -5,10 +5,10 @@
#include "types.h"
enum qr_ec_level {
- QR_EC_LEVEL_L,
- QR_EC_LEVEL_M,
- QR_EC_LEVEL_Q,
- QR_EC_LEVEL_H
+ 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,