Add extern "C" to header files.

Update issue 35
Status: FixedInGit
This commit is contained in:
Petteri Aimonen
2012-10-29 19:03:19 +02:00
parent db1eefc24b
commit 3aaa4ad8c2
3 changed files with 23 additions and 1 deletions

View File

@@ -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