diff options
author | Leo Howell <leo@lwh.jp> | 2009-09-27 16:31:03 +0900 |
---|---|---|
committer | Leo Howell <leo@lwh.jp> | 2009-09-27 16:31:03 +0900 |
commit | 559eb9633e1f97d70112f02538ae5e9a0e46f4d5 (patch) | |
tree | 78d3ce4998fc9cf60f55162c16323a415d47a57b /lpg/libqr/code-common.h | |
parent | 24e968c84075344de2b6b31dc054bfe988eacd04 (diff) | |
download | pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.tar.gz pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.tar.xz pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.zip |
bitmap handling routines
Diffstat (limited to 'lpg/libqr/code-common.h')
-rw-r--r-- | lpg/libqr/code-common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lpg/libqr/code-common.h b/lpg/libqr/code-common.h index 17a45d7..fce8dce 100644 --- a/lpg/libqr/code-common.h +++ b/lpg/libqr/code-common.h @@ -3,11 +3,11 @@ #include <qr/code.h> #include "bitstream.h" +#include "qr-bitmap.h" struct qr_code { - int format; - unsigned char * modules; - size_t line_stride; + int format; + struct qr_bitmap * modules; }; int code_side_length(int format); |