aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/code-layout.h
diff options
context:
space:
mode:
authorLeo Howell <leo@lwh.jp>2009-09-26 16:08:27 +0900
committerLeo Howell <leo@lwh.jp>2009-09-26 16:08:27 +0900
commit28849b589dcd933b2527d9f231ce6668ed7d19fa (patch)
treefe3bd370668940c18e37a0a10176c09e5a54be3c /lpg/libqr/code-layout.h
parent64a96442629b720b2e2b1cc3997ee3dbc6a71b90 (diff)
downloadpdf-simple-sign-28849b589dcd933b2527d9f231ce6668ed7d19fa.tar.gz
pdf-simple-sign-28849b589dcd933b2527d9f231ce6668ed7d19fa.tar.xz
pdf-simple-sign-28849b589dcd933b2527d9f231ce6668ed7d19fa.zip
(partially) layout code
Diffstat (limited to 'lpg/libqr/code-layout.h')
-rw-r--r--lpg/libqr/code-layout.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/lpg/libqr/code-layout.h b/lpg/libqr/code-layout.h
new file mode 100644
index 0000000..79e9730
--- /dev/null
+++ b/lpg/libqr/code-layout.h
@@ -0,0 +1,12 @@
+#ifndef CODE_LAYOUT_H
+#define CODE_LAYOUT_H
+
+struct qr_iterator;
+
+struct qr_iterator * qr_layout_begin(struct qr_code *);
+unsigned int qr_layout_read(struct qr_iterator *);
+void qr_layout_write(struct qr_iterator *, unsigned int);
+void qr_layout_end(struct qr_iterator *);
+
+#endif
+