From 88cc3f2fc88aa233e9357f1c5194494e7de4c0ee Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 24 Jun 2009 21:30:04 -0700 Subject: Progress implementing upb_msg. --- upb.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'upb.h') diff --git a/upb.h b/upb.h index 457e9ee..bb1563a 100644 --- a/upb.h +++ b/upb.h @@ -67,6 +67,14 @@ union upb_wire_value { * represent exceptional circumstances. */ typedef uint8_t upb_field_type_t; +struct upb_type_info { + uint8_t align; + uint8_t size; + uint8_t expected_wire_type; +}; + +extern struct upb_type_info upb_type_info[]; + /* A value as described in a .proto file, except delimited, which is handled * separately. */ union upb_value { -- cgit v1.2.3