mirror of
https://github.com/google/pebble.git
synced 2025-03-22 11:42:19 +00:00
11 lines
212 B
Protocol Buffer
11 lines
212 B
Protocol Buffer
syntax = "proto2";
|
|
import 'nanopb.proto';
|
|
|
|
message SubMessage {
|
|
optional int32 foo = 1 [(nanopb).type = FT_CALLBACK];
|
|
}
|
|
|
|
message MainMessage {
|
|
optional SubMessage bar = 1 [(nanopb).type = FT_POINTER];
|
|
}
|
|
|