Rename all protos to end with 'Proto' to avoid name conflicts.

This commit is contained in:
David Given
2021-05-13 18:05:08 +02:00
parent 639588fa68
commit 5a186b6960
37 changed files with 162 additions and 165 deletions

View File

@@ -2,13 +2,13 @@ syntax = "proto2";
import "lib/common.proto";
message IBMInput {
message IBMInputProto {
optional int32 sector_base = 1 [default=0];
optional bool ignore_side_byte = 2 [default=false];
optional Range required_sectors = 3;
optional RangeProto required_sectors = 3;
}
message IBMOutput {
message IBMOutputProto {
optional double track_length_ms = 1;
optional int32 sector_size = 2 [default=512];
optional bool emit_iam = 3 [default=true];