xref: /aosp_15_r20/external/nanopb-c/tests/callbacks/callbacks.proto (revision c8d645cafcee3f91213d30caa0fe303887010b9b)
1syntax = "proto2";
2
3message SubMessage {
4    optional string stringvalue = 1;
5    repeated int32 int32value = 2;
6    repeated fixed32 fixed32value = 3;
7    repeated fixed64 fixed64value = 4;
8}
9
10message TestMessage {
11    optional string stringvalue = 1;
12    repeated int32 int32value = 2;
13    repeated fixed32 fixed32value = 3;
14    repeated fixed64 fixed64value = 4;
15    optional SubMessage submsg = 5;
16    repeated string repeatedstring = 6;
17}
18
19