mirror of
https://github.com/google/pebble.git
synced 2025-03-21 19:31:20 +00:00
16 lines
243 B
Protocol Buffer
16 lines
243 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message Extendable {
|
||
|
extensions 10 to 100;
|
||
|
}
|
||
|
|
||
|
extend Extendable {
|
||
|
optional int32 opt_int32 = 11;
|
||
|
}
|
||
|
|
||
|
message PointerMessage {
|
||
|
optional int32 opt_int32 = 11 [(nanopb).type = FT_POINTER];
|
||
|
}
|
||
|
|