Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
// 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 |
|
|
|
#ifndef UPB_MINI_TABLE_INTERNAL_SUB_H_ |
|
#define UPB_MINI_TABLE_INTERNAL_SUB_H_ |
|
|
|
// Must be last. |
|
#include "upb/port/def.inc" |
|
|
|
union upb_MiniTableSub { |
|
const struct upb_MiniTable* UPB_PRIVATE(submsg); |
|
const struct upb_MiniTableEnum* UPB_PRIVATE(subenum); |
|
}; |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
UPB_INLINE union upb_MiniTableSub UPB_PRIVATE(_upb_MiniTableSub_FromEnum)( |
|
const struct upb_MiniTableEnum* subenum) { |
|
union upb_MiniTableSub out; |
|
out.UPB_PRIVATE(subenum) = subenum; |
|
return out; |
|
} |
|
|
|
UPB_INLINE union upb_MiniTableSub UPB_PRIVATE(_upb_MiniTableSub_FromMessage)( |
|
const struct upb_MiniTable* submsg) { |
|
union upb_MiniTableSub out; |
|
out.UPB_PRIVATE(submsg) = submsg; |
|
return out; |
|
} |
|
|
|
UPB_INLINE const struct upb_MiniTableEnum* UPB_PRIVATE(_upb_MiniTableSub_Enum)( |
|
const union upb_MiniTableSub sub) { |
|
return sub.UPB_PRIVATE(subenum); |
|
} |
|
|
|
UPB_INLINE const struct upb_MiniTable* UPB_PRIVATE(_upb_MiniTableSub_Message)( |
|
const union upb_MiniTableSub sub) { |
|
return sub.UPB_PRIVATE(submsg); |
|
} |
|
|
|
#ifdef __cplusplus |
|
} /* extern "C" */ |
|
#endif |
|
|
|
#include "upb/port/undef.inc" |
|
|
|
#endif /* UPB_MINI_TABLE_INTERNAL_SUB_H_ */
|
|
|