summaryrefslogtreecommitdiff
path: root/src/upb_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb_context.h')
-rw-r--r--src/upb_context.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/upb_context.h b/src/upb_context.h
index 8e46cae..b223b40 100644
--- a/src/upb_context.h
+++ b/src/upb_context.h
@@ -102,13 +102,16 @@ void upb_context_enumerate(struct upb_context *c, upb_context_enumerator_t,
* upb_context_addfd only returns true or false; it does not give any hint
* about what happened in the case of failure. This is because the descriptor
* is expected to have been validated at the time it was parsed/generated. */
-bool upb_context_addfds(struct upb_context *c,
- struct google_protobuf_FileDescriptorSet *fds);
+void upb_context_addfds(struct upb_context *c,
+ struct google_protobuf_FileDescriptorSet *fds,
+ struct upb_status *status);
-bool upb_context_addfds(struct upb_context *c,
- struct google_protobuf_FileDescriptorSet *fds);
+void upb_context_addfds(struct upb_context *c,
+ struct google_protobuf_FileDescriptorSet *fds,
+ struct upb_status *status);
-bool upb_context_parsefds(struct upb_context *c, struct upb_string *fds);
+void upb_context_parsefds(struct upb_context *c, struct upb_string *fds,
+ struct upb_status *status);
#ifdef __cplusplus
} /* extern "C" */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback