The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
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.
 
 
 
 
 
 

22 lines
466 B

// Test if including generated header file for this file + implicit include of
// multifile2.pb.h still compiles. Used with test_compiles.c.
syntax = "proto2";
import "multifile1.proto";
message Callback2Message {
required TestMessage tstmsg = 1;
required SubMessage submsg = 2;
}
message OneofMessage {
oneof msgs {
StaticMessage tstmsg = 1;
}
}
message Enums {
required SignedEnum senum = 1;
required UnsignedEnum uenum = 2;
}