aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/qr/code.h
diff options
context:
space:
mode:
authorLeo Uino <leo@norisys.jp>2011-07-19 12:08:33 +0900
committerLeo Uino <leo@norisys.jp>2011-07-19 12:08:33 +0900
commit779e729ad887c1cc967731a9634a11438d56b017 (patch)
tree51b22a15e7b182ba53fd4bccd52435102968886c /lpg/libqr/qr/code.h
parent1ea62d837531c4d5795381da5a2566606e03ac4b (diff)
downloadpdf-simple-sign-779e729ad887c1cc967731a9634a11438d56b017.tar.gz
pdf-simple-sign-779e729ad887c1cc967731a9634a11438d56b017.tar.xz
pdf-simple-sign-779e729ad887c1cc967731a9634a11438d56b017.zip
Add C++ header protectors
Diffstat (limited to 'lpg/libqr/qr/code.h')
-rw-r--r--lpg/libqr/qr/code.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lpg/libqr/qr/code.h b/lpg/libqr/qr/code.h
index e6eb47c..0f5d49c 100644
--- a/lpg/libqr/qr/code.h
+++ b/lpg/libqr/qr/code.h
@@ -4,6 +4,10 @@
#include <stddef.h>
#include "types.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct qr_code {
int version;
struct qr_bitmap * modules;
@@ -13,5 +17,9 @@ struct qr_code * qr_code_create(const struct qr_data * data);
void qr_code_destroy(struct qr_code *);
+#ifdef __cplusplus
+}
+#endif
+
#endif