summaryrefslogtreecommitdiffstats
path: root/pb_encode.h
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-10-29 19:03:19 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-10-29 19:03:19 +0200
commit3aaa4ad8c290af87d9bb9e24447f9cd6f9a79eab (patch)
tree98a5f06be5c64a9c6199cd842064400d8e5e6d9e /pb_encode.h
parentdb1eefc24bd9d1181dee35683c5fe12329f7d969 (diff)
Add extern "C" to header files.
Update issue 35 Status: FixedInGit
Diffstat (limited to 'pb_encode.h')
-rw-r--r--pb_encode.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/pb_encode.h b/pb_encode.h
index af6cc3c5..85a82973 100644
--- a/pb_encode.h
+++ b/pb_encode.h
@@ -9,6 +9,10 @@
#include <stdbool.h>
#include "pb.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Lightweight output stream.
* You can provide callback for writing or use pb_ostream_from_buffer.
*
@@ -99,5 +103,8 @@ bool pb_enc_string(pb_ostream_t *stream, const pb_field_t *field, const void *sr
* instead, it has the same functionality with a less confusing interface. */
bool pb_enc_submessage(pb_ostream_t *stream, const pb_field_t *field, const void *src);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
#endif