8 lines
127 B
Protocol Buffer
8 lines
127 B
Protocol Buffer
syntax = "proto2";
|
|
import "nanopb.proto";
|
|
|
|
message MyMessage {
|
|
repeated string values = 1 [(nanopb).type = FT_POINTER];
|
|
}
|
|
|