Update doc revision and pdf cover.
[apps/low-level-can-service.git] / CAN-binder / libs / nanopb / tests / callbacks / callbacks.proto
1 syntax = "proto2";
2
3 message SubMessage {
4     optional string stringvalue = 1;
5     repeated int32 int32value = 2;
6     repeated fixed32 fixed32value = 3;
7     repeated fixed64 fixed64value = 4;
8 }
9
10 message 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