• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto2";
2import "nanopb.proto";
3
4message Extendable {
5    extensions 10 to 100;
6}
7
8extend Extendable {
9    optional int32 opt_int32 = 11;
10}
11
12message PointerMessage {
13    optional int32 opt_int32 = 11 [(nanopb).type = FT_POINTER];
14}
15
16