diff options
author | Leo Uino <leo@norisys.jp> | 2011-07-19 12:08:33 +0900 |
---|---|---|
committer | Leo Uino <leo@norisys.jp> | 2011-07-19 12:08:33 +0900 |
commit | 779e729ad887c1cc967731a9634a11438d56b017 (patch) | |
tree | 51b22a15e7b182ba53fd4bccd52435102968886c /lpg/libqr/qr/parse.h | |
parent | 1ea62d837531c4d5795381da5a2566606e03ac4b (diff) | |
download | pdf-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/parse.h')
-rw-r--r-- | lpg/libqr/qr/parse.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lpg/libqr/qr/parse.h b/lpg/libqr/qr/parse.h index 07a0424..0e08354 100644 --- a/lpg/libqr/qr/parse.h +++ b/lpg/libqr/qr/parse.h @@ -3,6 +3,10 @@ #include "data.h" +#ifdef __cplusplus +extern "C" { +#endif + int qr_code_parse(const void * buffer, size_t line_bits, size_t line_stride, @@ -12,5 +16,9 @@ int qr_code_parse(const void * buffer, int qr_decode_format(unsigned long bits, enum qr_ec_level * ec, int * mask); int qr_decode_version(unsigned long bits, int * version); +#ifdef __cplusplus +} +#endif + #endif |