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.
27 lines
709 B
27 lines
709 B
5 months ago
|
#ifndef THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
|
||
|
#define THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
|
||
|
|
||
|
#include "upb/mem/arena.h"
|
||
|
#include "upb/message/message.h"
|
||
|
#include "upb/mini_table/extension_registry.h"
|
||
|
#include "upb/mini_table/message.h"
|
||
|
|
||
|
// Must be last.
|
||
|
#include "upb/port/def.inc"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
UPB_API bool upb_Message_MergeFrom(upb_Message* dst, const upb_Message* src,
|
||
|
const upb_MiniTable* mt,
|
||
|
const upb_ExtensionRegistry* extreg,
|
||
|
upb_Arena* arena);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#include "upb/port/undef.inc"
|
||
|
#endif // THIRD_PARTY_UPB_UPB_MESSAGE_MERGE_H_
|