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.
14 lines
395 B
14 lines
395 B
4 months ago
|
#ifndef GOOGLE_PROTOBUF_RUST_CPP_KERNEL_COMPARE_H__
|
||
|
#define GOOGLE_PROTOBUF_RUST_CPP_KERNEL_COMPARE_H__
|
||
|
|
||
|
#include "google/protobuf/message_lite.h"
|
||
|
|
||
|
extern "C" {
|
||
|
|
||
|
bool proto2_rust_messagelite_equals(const google::protobuf::MessageLite* msg1,
|
||
|
const google::protobuf::MessageLite* msg2);
|
||
|
|
||
|
} // extern "C"
|
||
|
|
||
|
#endif // GOOGLE_PROTOBUF_RUST_CPP_KERNEL_COMPARE_H__
|