inline.proto 361 B

1234567891011121314151617
  1. /* Test nanopb option parsing.
  2. * options.expected lists the patterns that are searched for in the output.
  3. */
  4. syntax = "proto2";
  5. import "nanopb.proto";
  6. message Message1
  7. {
  8. required bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 32];
  9. }
  10. message Message2
  11. {
  12. optional bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 64];
  13. }