|
||||
File indexing completed on 2025-01-18 10:13:19
0001 // Protocol Buffers - Google's data interchange format 0002 // Copyright 2023 Google LLC. All rights reserved. 0003 // 0004 // Use of this source code is governed by a BSD-style 0005 // license that can be found in the LICENSE file or at 0006 // https://developers.google.com/open-source/licenses/bsd 0007 0008 #ifndef UPB_WIRE_TYPES_H_ 0009 #define UPB_WIRE_TYPES_H_ 0010 0011 // A list of types as they are encoded on the wire. 0012 typedef enum { 0013 kUpb_WireType_Varint = 0, 0014 kUpb_WireType_64Bit = 1, 0015 kUpb_WireType_Delimited = 2, 0016 kUpb_WireType_StartGroup = 3, 0017 kUpb_WireType_EndGroup = 4, 0018 kUpb_WireType_32Bit = 5 0019 } upb_WireType; 0020 0021 #endif /* UPB_WIRE_TYPES_H_ */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |