Sha256: 91a082b2aae76d2c2e7ede1f16493c5733d6a509e365cb329bbec22ae7c254d9
Contents?: true
Size: 1.58 KB
Versions: 22
Compression:
Stored size: 1.58 KB
Contents
// Protocol Buffers - Google's data interchange format // Copyright 2023 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd // IWYU pragma: private, include "upb/reflection/def.h" // Declarations common to all public def types. #ifndef UPB_REFLECTION_COMMON_H_ #define UPB_REFLECTION_COMMON_H_ // begin:google_only // #ifndef UPB_BOOTSTRAP_STAGE0 // #include "net/proto2/proto/descriptor.upb.h" // #else // #include "google/protobuf/descriptor.upb.h" // #endif // end:google_only // begin:github_only #include "google/protobuf/descriptor.upb.h" // end:github_only typedef enum { kUpb_Syntax_Proto2 = 2, kUpb_Syntax_Proto3 = 3, kUpb_Syntax_Editions = 99 } upb_Syntax; // Forward declarations for circular references. typedef struct upb_DefPool upb_DefPool; typedef struct upb_EnumDef upb_EnumDef; typedef struct upb_EnumReservedRange upb_EnumReservedRange; typedef struct upb_EnumValueDef upb_EnumValueDef; typedef struct upb_ExtensionRange upb_ExtensionRange; typedef struct upb_FieldDef upb_FieldDef; typedef struct upb_FileDef upb_FileDef; typedef struct upb_MessageDef upb_MessageDef; typedef struct upb_MessageReservedRange upb_MessageReservedRange; typedef struct upb_MethodDef upb_MethodDef; typedef struct upb_OneofDef upb_OneofDef; typedef struct upb_ServiceDef upb_ServiceDef; // EVERYTHING BELOW THIS LINE IS INTERNAL - DO NOT USE ///////////////////////// typedef struct upb_DefBuilder upb_DefBuilder; #endif /* UPB_REFLECTION_COMMON_H_ */
Version data entries
22 entries across 22 versions & 1 rubygems