Welcome to mirror list, hosted at ThFree Co, Russian Federation.

callbacks.proto « tests - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccd1edd8c5bcc98666d06ce765e11196d9c96810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
message SubMessage {
    optional string stringvalue = 1;
    repeated int32 int32value = 2;
    repeated fixed32 fixed32value = 3;
    repeated fixed64 fixed64value = 4;
}

message TestMessage {
    optional string stringvalue = 1;
    repeated int32 int32value = 2;
    repeated fixed32 fixed32value = 3;
    repeated fixed64 fixed64value = 4;
    optional SubMessage submsg = 5;
    repeated string repeatedstring = 6;
}